Is there a posibility to search for Storys (issuetype = story) where a linked testcase (from xray plugin) is available so requirement status != UNCOVERED and the testcase is in Status "in design".
Have some serious problems to do the link between the story and the testcase status
Hi @Manuel Loosli. My name is Habib I will do my best to assist you with your issue today.
```
issuetype = story AND issue in linkedIssues("type = Test and status = 'In Design'") AND (cf[10005] != "Uncovered" OR cf[10005] is EMPTY)
```In this query:
`issuetype = story` specifies that only stories should be returned.
`issue in linkedIssues("type = Test and status = 'In Design'")` specifies that the returned stories should have a linked issue of type "Test" with a status of "In Design".
`(cf[10005] != "Uncovered" OR cf[10005] is EMPTY)` specifies that the returned stories should have a requirement status that is not "Uncovered" or empty.
I hop this has helped.
Thank you
Habib
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.