Is it possible to do recursive queries?
I want to create a query that has all the child work items of a user story including children of children.
The only way I can see to do this is to create a query where parent id = user story OR parent id = .
This isn't very flexible because I have to remember to add an extra OR clause if I add a child to one of the child work items.
Is there any way to make queries recursive so it automatically includes all the children of children?
The only way I can see to do this is to create a query where parent id = user story OR parent id = .
This isn't very flexible because I have to remember to add an extra OR clause if I add a child to one of the child work items.
Is there any way to make queries recursive so it automatically includes all the children of children?
One answer
I want to create a query that has all the child work items of a user
story including children of children.
The only way I can see to do this is to create a query where parent id
= user story OR parent id = .
This isn't very flexible because I have to remember to add an extra OR
clause if I add a child to one of the child work items.
Is there any way to make queries recursive so it automatically
includes all the children of children?
Currently you can't create a recursive query.
--
Regards,
Patrick
Jazz Work Item Team