We are working with green hopper and have Stories. When a Bug is opened it is linked to a story through the 'Story Label'
field.
Now I would like to create a query that will show me all bugs related to a sprint, meaning all bugs that relate to the Stories assigned to the sprint.
Here is the query to get all stories:
project = TMP AND issuetype = Story AND fixVersion = 11113
And Here is the query to get all bugs of a story:
project = TMP AND issuetype = Bug AND "Story Label" = jim-887
How do I combine both?