I'm trying to make a dashboard showing all tasks issue type that are linked to a test plan issue type.
Is there a way to write a filter doing this ?
thanks in advance
Hello,
You can find handy information about XRAY queries in their Enhanced querying with JQL page
See:
Regards
Hey Jack,
this is a static way here you must add the issue key :( .
I want it to be a generic dashboard that contains all the issue type "Task" that are linked to a test plan issue type in order to show the test execution status so in the JQL filter I didn't find a way to list all the issue type tasks that are linked with another issue type test plan, did you get the idea ?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Are you using standard issue linking feature to link Tasks and Test Plans? If so you can use a third-party app to dynamically retrieve all linked issues of a given subquery.
ie. Using JQL Booster Pack (FREE), you can retrieve all Task linked to any Test Plan, see:
type = Task AND issue IN linkedIssuesOf('type = "Test Plan"')
Hope this helps,
Regards
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks for your help, it works :)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Are you using a specific link type for linking defects? If so, you could query using "issueLinkType = ". E.g. issueLinkType = "has defect"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hey Pete,
No, I'm not using any specific link type, users can use any type he wants
The dashboard must be like this
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.