I can filter tickets based on their issuetype with query like:
issuetype in(Story, Bug, Task, Improvement) when I want to filter tickets. I can do the same to list out sub-tasks.
Is there a generic way to selects all standard tasks but not sub-tasks using Jira Query?
This will be easy for me to include my 7-8 types of story level tickets everytime I want to filter them using Jira.
Hi @Sanjog Sigdel ,
Using below jql function you can find issues that are not subtasks.
issuetype in standardIssueTypes()
Regards,
Balaji Murkute.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Just adding these two issuetypes here for future references and just is case anyone else is searching for the same query.
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.
Sub-task is a particular type of Sub Task, we can have multiple sub tasks such as QA, Design, Documentation and Support subtasks. As many as we create. Above solution provided by ! @Balaji Shriram Murkute there are few issue types. Standard Issue types are issue types who can have sub-tasks say Story, Task, Bug, Improvement etc.
Save these two issue types. This wis gonna make my queries look too small and pretty :)
Above solution is perfect.
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.