I have a query that returns a list of stories that are in a specific status. I'd like to extend that query out to identify all the tests linked to those stories.
project = "DPT" AND issuetype = Story AND "Reporting Team" = "DPT Non-Personal" AND status not in (Descoped) AND "Delivery Team" not in ("DPT Migration") AND status in (Implemented, "In Functional Test", "In Sprint Testing")
I'm really struggling with the sub-query logic around linkedIssueOf and how to bolt it on to the above. Appreciate any guidance.
Thanks in advance
Ross
Hi @Ross B
Could you please clarify if you intend to use all the conditions you provided in your JQL in the linkedIssuesOf JQL Function?
Thank you and Kind regards,
Ram
I would need to use most of those conditions unfortunately. I could possibly tag everything with a label I suppose and simplify it. I'd just have to keep an eye out for new stories and keep tagging them.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
issuetype = Test AND issueLinkType in linkedIssuesOf("Your Query Here")
^not working for me so might be I don't have scriptrunner installed
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.