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.
×Hello,
Is it possible using JQL "issueFunction" (or perhaps another way) to get a list of sub-tasks within parent tickets of a certain issue type and status?
So, something like:
I've tried this, but the sub-tasks of an issue are not considered linked issues, so this query doesn't show the sub-tasks:
issueFunction in linkedIssuesOf("status = 'Patching'") and resolution is empty
Thanks in advance for any assistance you can offer.
Hello @Durell Demartini
Do you have ScriptRunner or another JQL-extending app on your instance? "issueFunction" is used to call non-native JQL functions that are often provided by a third party app.
There are a few apps that could give you what you want.
ScriptRunner has the subtasksOf() function
https://docs.adaptavist.com/sr4js/latest/features/jql-functions/included-jql-functions/sub-tasks
JQL Search Extensions has a SubTaskOf() function
JQL Tricks has a parent() function
Hi @Trudy Claspill we have ScriptRunner. We were hoping not to have to leverage another addon for now.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Then you can use the ScriptRunner subtasksOf() function
https://docs.adaptavist.com/sr4js/latest/features/jql-functions/included-jql-functions/sub-tasks
issueFunction in subtasksOf("issuetype = 'Virtual Machine' and status = 'Patching'")
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.