Hi
I want to make a Jira Filter which can Extract Information like Parent Task & it's Sub-Tasks as well (whether Assigned or Not) e.g.,
Task 1
Sub-Task 1
Sub-Task 2
Sub-Task 3
I have made following jql query for it
(issuetype IN standardIssueTypes()
or issuetype IN subTaskIssueTypes())
AND createdDate > "2023-12-31"
AND status Not IN ("Closed", "Canceled", "Resolved", "Done", "To Do")
ORDER BY created DESC
This query returns Sub-tasks, but the Parent Tasks are Missing.
Any idea
Thanks
Regards
Shahzad Iqbal
Hi Shahzad,
I just tried this and it worked:
(issuetype IN standardIssueTypes()
or issuetype IN subTaskIssueTypes())
AND createdDate > "2023-12-31"
If you just do that part, does it work?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Great! Glad to hear and you are welcome!
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.