We are using JQL Tricks Plugin which provides some excellent enhances to advanced query's.
However, if are unable to find a plugin/solution to solve this problem. We have parent/subtask issues where our parents are labeled with a particular label. We want to search for all subtasks where the parent has label x.
Something like:
project = "Test" parent('labels in ("mylabel")')
Anyone know how to perform this query?
Thanks.
-Mike
Can you try the following?
issue in parent("labels = \"mylabel\"")
You can also do the following if you want to search on multiple labels
issue in parent("labels in (\"mylabel\",\"some other label\")")
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.
Three years later, and this code doesn't work. I guess JQL's changed a lot since then. How would this be done now?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
+1...
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Has anyone found a solution for this yet?
I would also need this but am not able to find a working query so far =/
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I am looking for solution as well, thanks.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
+1, doesn't work now
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Just have the same requirement and successfully make it happens
You can use something like
issueFunction in subtasksOf("labels = \"mylabel\"")
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
not for me
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
That worked nicely for me, thank you for sharing.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
issueFunction seems to not exist anymore
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.