Hi all,
have you any idea how to write a query to select all Stories in the project with the following parameters:
1. Story has linked Bugs via "relates to"
2. Bugs should be in not "Closed" status
3. Bugs should be in Blocker, Critical, Major statuses
Have tried such queryy
issuetype = Story and ( (issueFunction in linkedIssuesOf("status not in (Closed)", "is related by") or issueFunction in linkedIssuesOf("status not in (Closed)", "relates to") ) and priority in (Blocker, Critical, Major))
but it returns not expected results
Thanks for you help.
type = story and issueFunction in linkedIssuesOf("type = bug and status not in (closed) and priority in (Blocker, Critical, Major)", "relates to")
Try above query, this should do the trick.
Hello @Tarun Sapra
do you mean mark it as 'Mark as solution'?
If yes - I've done it :)
Thank you for you help.
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.
Hello @Oleksandr M.
Glad to know that it worked, could you please accept the answer so that others are helped as well.
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.