Hi,
Sadly you must go for a third-party app for this complex query.
Using i.e. JQL Booster Pack you must type:
Find Stories not having Subtaks with summary "integration tickets"
type = Story AND issue NOT IN parentsOf('summary ~ "integration tickets" AND type in subTaskIssueTypes()')
Regards
@charutiwari As mentioned by others, its not possible naively, I am using JQL Search Extensions for Jira & reports.
I would suggest give a try , its not that much expensive and have amazing built in queries.
In your case by using this plugin following query will get all user stories which have no sub tasks.
issue in subtaskCountLessThan(1)and issuetype=story
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thankyou @Muhammad Ramzan_Atlassian Certified Master_ , is there any free version of this in the marketplace?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Unfortunately its paid one, but you can give a try at trail version , all plugins in jira are available on trail for one month
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Muhammad Ramzan_Atlassian Certified Master_ : Would I need to purchase this for every login on my cloud JIRA or just one overall? Say if it cost $10 and my cloud JIRA has 20 user, Would I need to pay $200?
If it is for every login, can I purchase it for only my login and not everyone?
Thanks!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thankyou everyone. Is there any free extension I can get for this in the marketplace or anywhere else?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
As I suggeted, JQL Booster Pack is free prior to 2.x version.
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.
Not sorry, only available for Server & DataCenter deployment options
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
type = story and issueFunction not in linkedIssuesOfAll("summary~'integration tickets' and type=sub-task")
type = story and issue not in parentIssuesFromQuery("summary~'integration tickets'")
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Leonard Chew : I added scriptrunner . However the functions and query you suggested is still not available.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
OOTB you can’t find issues that have or do not have sub-tasks so that interferes with your goal. You can accomplish this using an addon like Scriptrunner and others.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You will need to have Scriptrunner for the same. It has "issueFunction" capability in JQL that provides help complicated requirements.
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.