I am using a label "2026_Approved" to my epics.
I have set a filter like this,
project = PROJ AND labels = 2026_Approved
and saved as 2026filter1
Now I want to retrieve the child tickets from the filter.
So used this query,
project = PROJ AND issuetype in (Story, Defect) AND parent in (filter = "2026filter1") but getting the error
Tried Rovo no luck.
Appreciate your help. Thanks in advance.
Hello @Riyas Khareem
Jira doesn't natively support what you want to do. A third party app would be required. Are you willing to consider an app?
What do you need to do with the output? Depending on that we may be able to suggest an alternative that doesn't require an app.
@Trudy Claspill as I develop my Jira plan, I intend to leverage the labels that the product team adds when they create epics for our project roadmap.
My goal is to set up the plan so that it dynamically retrieves all child tickets associated with these labels.
This way, whenever new epics are labeled and added, their related child tickets are automatically included in the plan, keeping everything up to date without manual intervention. Hope this clarifies.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you for that additional information @Riyas Khareem .
So you truly need this to be output from a filter.
In that case you will need a third party app to construct a filter to achieve your requirement.
@Bartek Szajkowski _ Orbiscend OU mentioned their app.
There are other apps that also provide more functions that can be used within JQL.
From Adaptavist there is Enhanced Search.
From Appfire there is JQL Search Extensions.
There are other apps that might provide the same functionality. The above two are the ones with which I am familiar.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Dear @Trudy Claspill
Thank you for mentioning our app.
I hope you’ll have an opportunity to explore also our app in the near future and become familiar with it. I would truly appreciate it.
Greetings
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Dear @Riyas Khareem
Thanks for your request - I'm Bartek from Orbiscend OU (JQL Argon app provider).
If you are open for third-party app, I would like to recommend to try our JQL Argon app, available on Marketplace (now still for free) JQL Argon
JQL Argon can solves this directly.
The JQL error happens because parent in (filter = "...") is not valid native JQL syntax — Jira doesn't support filter references inside parent in ()
Argon's childrenOf() function accepts a full JQL query as its argument, so you can skip the saved filter entirely and write it in one clean query:
issue in childrenOf("project = PROJ AND labels = 2026_Approved")
This returns all child tickets (Stories, Defects, Sub-tasks, etc.) of any epic/issue labeled 2026_Approved in PROJ.
If you want to limit to Stories and Defects only, please check:
issue in childrenOf("project = PROJ AND labels = 2026_Approved") AND issuetype in (Story, Defect)
I hope you will find my prompt useful.
Greetings
Bartek from Orbiscend OU
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Getting an error when trying to use "Unable to find JQL function children of"
I am using Jira in Cloud Instance.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Dear @Riyas Khareem
You need to instal JQL Argon app from Marketplace - above code base and works only with app JQL Argon.
Greetings
Bartek
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.