I'm trying to make a JQL filter to hide issues that are in a status that have a specific property value.
More specific, we have some workflows that the final status have the property jira.issue.editable=false, and because of some integrations that we are making, we want to exclude this issues in a JQL.
Can any one help?
Hi @JoséF
Why not exclude the statuses where you have this property set?
Even if you have a flag set the REST Api call won't be able update the issue. Just capture those errors in your logic.
Ravi
The problem is that we use the same status on different workflows and the property is related to the status in a specific workflow.
But thanks for your help.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Ok In understand. May be something like this.
(project = Kanban and status != "To Do") OR (project = NGK and status = "To Do")
Let me know.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.