Hi - Can anyone help me to write the query through which I can list of all bugs which are linked to a particular story?
E.g. Whenever any bug is raised, we link with the original story it belongs to through "belongs to" option and now I want to see which all bugs are linked to a partucular story
You can use
linkedIssue in linkedIssues("<replace the issue key for the specific story>") AND issuetype = Task
in a JQL search.
Hi @Porush Verma ,
If you have script runner then you can try below JQL-
Go to issue navigator and search for those bugs.
issue in linkedIssues(issueKey,linkType)
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.