You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
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.
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.