I want to create a query to see all Bug linked to a particular user story

Abhishek Singh January 15, 2018

Suppose we have 4 user stories(A,B,C,D) inside an epic.  Now while logging Bug I linked them to respective user stories.  So Now it will looks like

A: Bug-1,Bug-2

B: Bug-3, Bug-4

C: Bug-5,Bug-6

D: Bug-7

I want to create a query which will display me bugs linked to a particular Story. For example if i ran my query for user story A, It should give me Bug-1,Bug-2 in result

1 answer

1 accepted

0 votes
Answer accepted
Alexey Matveev
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
January 15, 2018

Hello, 

You can use out of the box function 

linkedIssues(issueKey,CaseSensitiveLinkType)

In your case it would look like this

issue in linkedIssues(STORY-123,"is blocked by") 

Abhishek Singh January 15, 2018

Thanks, Alexey!

issue in linkedIssues(STORY-123,"relates to")  AND issuetype=Bug

This query fulfills my purpose. Thanks again :)

Like Moinuddin Ansari likes this

Suggest an answer

Log in or Sign up to answer