When I run this query I get 64 results, as expected:
project = PGE and issuetype = Story and "Epic Link" = PGE-1574 and Sprint = 182
When I run this query, which adds the issueLinkType clause, I get 0 results, though I was expecting 64 results.
project = PGE and issuetype = Story and "Epic Link" = PGE-1574 and Sprint = 182 and issueLinkType != "is blocked by"
This clause is taken from the JQL fields documentation.
Still researching, but I think this might be relevant.
Also, do the child stories all have at least 1 issue linked to them?
If the child stories have no issues linked to them then you need to use this filter to include those in your output:
AND (issuelinktype != "is blocked by" or issuelinktype is empty)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hey, adding "or issuelinktype is empty" resolved it!
Thanks very much!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Ron Feldman
Would you please provide your complete JQL statement? That may reveal more information about what is happening. Thanks!
Best regards,
Bill
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks, I have updated my original post with the query that gives expected results and the query that gives unexpected results.
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.