I need to build a report or filter of the subtasks that are derived from a task. Is a JQL query possible for this? How can it be built so that it allows to have a column with the keys of the subtasks?
List Sub-tasks
If you want to do it for an individual parent issue then this JQL can be used.
issue in childIssuesOf("PARENT-123")
It will list all the sub-tasks for PARENT-123
List Parents with Sub-Task as a column
In the issue navigator simply include the Sub-Task column and it will display comma separated sub-tasks if any for that issue.
Let me know if that was useful.
Ravi
Thank you, the second option is what I needed.
Is there a similar option but to validate that the flow passed through a state other than the current state (where the flow is not sequential)?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I am glad it helped. About your second question I am not sure if I get that. Can you elaborate with an example please?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
option that indicates whether a request passed through a state or not. Example, a flow with four possible states, indicate if the request passed through state three or not.
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.