Just a heads up: On March 24, 2025, starting at 4:30pm CDT / 21:30 UTC, the site will be undergoing scheduled maintenance for a few hours. During this time, the site might be unavailable for a short while. Thanks for your patience.
×At my company, the Project Lead is the ultimate owner of each issue. Is there a way to build a filter that includes this criteria? I don't see Project Lead as a field.
on of my guys here figured it out .
OR project IN projectsLeadByUser())
This worked for me perfect :) Thanks!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Perfect, thanks! Here is the link for more JQL functions on JIRA.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
That's pretty much what I'm looking for. Where is the JQL Tricks Plug in? Is it available in the On Demand version of JIRA/Tempo?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
It is available on marketplace but unfortunately not available for onDemand. I should also say that it is a paid plugin.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
i am using rest Api and licenced jira,
but not able to get the project for a projectLead.
please help me..
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
The JQL Tricks plugin has a projectLead function which can be used to filter issues. For example,
assignee = projectLead("XYZ")
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This isn't working, unfortunately. It says the JQL function isn't available
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I found that projectsLeadByUser() requires either 'currentuser()' or the user GUID not their user ID, ie projectsLeadByUser(559058:d6094997-aa6b-40b3-b25a-50f4c5105988)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I think GUID/ID isn't required, I searched the queries with all of my teammate's usernames just now and it worked, even though they're not current login user.
Open for suggestions :)
Please refer JQL in JIRA
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
personally, I was unable to use the usernames and had to open each user's profile to get their unique ID out of the URL. applying that ID gave me precisely what I needed
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Interesting! Is there a reason that we cannot identify the usernames? Is it something that comes from "Browse users" Global Permissions. It's good to know this trick from you @Jason Hertz
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.