Hello,
I am searching a way (may be JQL-function) to list all Subtasks assigned to me for defined Sprint in Parent (Task) but Sprint not set in Subtask.
Thanks in advance
No, it is not in our installation.
What happens?
If I had a function like SprintOfParent() I would be able to search for it.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @toohoo,
Welcome to the Atlassian Community!
I’m Prosper, a support engineer at Appfire, and I’m here to help.
If you are open a plugging suggestion, you can try out our App JQL Search Extension for Jira.
You can use the query:
issue in ChildrenOfIssuesInQuery("{jql function}")
To get the children of a parent task.
If you have the key of the parent, in your case the task key, you could do something like this:
issue in ChildrenOfIssuesInQuery("{parentKey}")
or you can also pass in the sprint and filter as needed:
issue in ChildrenOfIssuesInQuery("sprint = 1")
You can see more information about this query here, and please contact our support if you have any other questions about this query.
We’ll be happy to help you!
Best regards,
Prosper.
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.