I want to set up a rule. When updating the "status" attribute on a request, send!
Is it possible to specify iql in such a way that it will display objects in which "Status" has changed to "Lost" ?
To create a query or rule using an issue query language (IQL) to track issues that have changed their status to "Lost. " The specific syntax will depend on the issue-tracking tool you're using. So if I can know wich tool your using so I can give the help.
Insight automation jira DC
It may be schebule or object update listener.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
To create an Insight Automation rule in Jira DC to track issues that have changed their status to "Lost", you can use the following IQL query as the trigger for the rule:
issue.propertyValue("status") == "Lost"
Alternatively, if you prefer to use an Object Update Listener to track changes to Insight objects, you can use the following IQL query to find objects whose status property has been updated to "Lost":
objectType = "Insight Object Type Name" and status = "Lost" and status[previous] != "Lost"
Replace "Insight Object Type Name" with the name of the Insight object type that has the "status" property you want to track.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I tried to find objects using on IQL example, but there are no objects there. If i trying to find object with existing status is works! I tried change status frome someone to "Retried" - your IQL example doesn't show objects.
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.