Dear Sir or Madam,
I am not sure if this is the right topic. I have not found any JQL-related topic that is why I post it in the general "Jira"-topic.
we are using quick-filters for the kanban-board in Jira. In 1 quick-filter we want to see
Thanks in advance
Joel
The working JQL is:
Component = "<component name>" or issueFunction in subtasksOf('component = "<component name>"')
So, when you want to check a component of a super-task (meaning you are looking at a sub-task of a story) you need this code:
issueFunction in subtasksOf('component = "<component name>"')
Shalom
Joel
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.
No, we are not using script runner, Are there any alternatives
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Can you articulate your precise goal? If it is exactly as specified by Joel then you cannot achieve OOTB. You will need some addon solution. I recommend continuing your search in the Community as well.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Tks @Joel Hofer
This solution works for me!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Joel Hofer
This works great - just 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.
Not working, sub queries are not working in JIRA anymore
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Joel Hofer ,
@Megha Sinhaasks how to get the same results in Jira Cloud. With standard JQL, you can only get a list of issues and export them to Excel for further processing. This works if you want to do a one-off analysis. Your use case is more dynamic than that.
Standard JQL doesn't easily allow it, but you can quickly find the results using our professional indexing service:
After you install the app, you can simply search:
component = "<component name>" OR issue in subtasksOfParentsInQuery("component = '<component name>'")
Make sure the check out the documentation.
I hope this helps!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Joel, welcome to the Community. OOTB there isn’t a JQL to achieve your goal. However, what about placing the component into the Subtask? This would allow the following to work...
component = xxxx and type = sub-task
if this won’t work consider an addon, e.g. Scripting that has JQL functions that could meet your needs.
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.