Hi,
I have a problem with JQL Tricks Plugin when I am filtering issues.
I have issues and they are linked together. Some of them are in status "Closed" and some of them in status "In Progress". I need filter issue or issues which has linked issues with status "Closed". I am using this JQL syntax:
project = "xxx" AND issue in linkedIssuesHasStatus("Closed") - it does not work.
Does someone know correct syntax ?
Vaclav
Vaclav,
This should have worked. Can you please raise a support case at https://studio.plugins.atlassian.com/browse/JQLT ?
Try this out and see if that works better for you.
issue in linkedIssuesInQuery("project = xxx AND status = Closed")
If your xxx has spaces then enter the value using escaped quotes like
\"xxx\"
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can specify the link type, but it should be optional as I read the documentation.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi, it is near what I need. Thank you. But I need use this:
project = "xxx" AND issue in linkedIssuesHasStatus("Closed").
When I change status to "In Progress" than it's work! But it doesnt work with status "Closed". My boss has tried that too with same resolution = nothing appears.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I am assuming does not work means no results. Is that true?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hey,
From the plugin's documentations, it seems the syntax for this is "linkedIssuesHasStatus (status,[linkType]", so how about:
linkedIssuesHasStatus ("Closed","reletes to")
or
linkedIssuesHasStatus ("Closed","is related to")
Cheers!
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.
I have 3 issues x1,x2,x3.
x1 status = closed
x2 status = closed
x3 status = in plan
x1,x2,x3 are linked with "reletes to" so x1 relates to x2, x2 reletes to x3.
What I need is to filter issue which has linked issues with status "closed". In this case x3 should show.
When I use advanced search and place JQL question:
project = "xxx" AND issue in linkedIssuesHasStatus("Closed")
it doesn't work. I don't know if I am using wrong links (maybe x3 depents on x1,x2) or I should use different function or different JQL question.
Thank you for reply.
Vaclav
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Vaclav,
As far as I know, it's not really possible to find an issue based on the status of the linked issue. You can however find an issue based on which issue it is linked to.
Cheers,
Joe
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I have 3 issues x1,x2,x3.
x1 status = closed
x2 status = closed
x3 status = in plan
x1,x2,x3 are linked with "reletes to" so x1 relates to x2, x2 reletes to x3.
What I need is to filter issue which has linked issues with status "closed". In this case x3 should show.
When I use advanced search and place JQL question:
project = "xxx" AND issue in linkedIssuesHasStatus("Closed")
it doesn't work. I don't know if I am using wrong links (maybe x3 depents on x1,x2) or I should use different function or different JQL question.
Thank you for reply.
Vaclav
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Can you explain more about the links you are using and what is not working?
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.