we have stories that are managed by the product team and tasks linked to each story that are managed by R&D.
We want a query that will show us when a story was moved to a different sprint and the related tasks were not moved with it.
ideally it will be a list like this:
|story id|story sprint | linked task id|task sprint|
There are the limitations of JQL. A compare of two fields would be nice in this case.
If I would face this problem, I would query over the API with following pseudo algorithm:
$result = search for all stories that are assigned to one $sprint
for all in $result do {
$children = get all children of $result
for all in $children do {
if ($children->$sprint != $sprint)
echo "found one"
}
}
@Lilach Givatywas this helpful?
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.