History JQL functions Cloud
: available in Issue Navigator.
JQL functions below are applicable for Select List (Single choice), Group Picker (Single group), User Picker (single user), Radio Button.
customFieldOptionChanged()
Search for information regarding the history of the issue.
Examples
issue in customFieldOptionChanged("query", "Custom Field ID/Name", "From Value", "To Value")
issue in customFieldOptionChanged("query", "User Picker Field", "username1", "username2")
issue in customFieldOptionChanged("query", "Project Manager", "jane.austen", "josé.saramago")
finds the issues that the Project Manager field changed to josé.saramago from jane.austen.
customFieldOptionChangedTo()
Search for information regarding the history of the issue.
Examples
issue in customFieldOptionChangedTo("query", "Custom Field ID/Name", "To Value")
issue in customFieldOptionChangedTo("query", "User Picker Field", "username2")
issue in customFieldOptionChangedTo("query", "Project Manager", "josé.saramago")
finds the issues that the Project Manager field changed to josé.saramago.
customFieldOptionChangedFrom()
Search for information regarding the history of the issue.
Examples
issue in customFieldOptionChangedFrom("query", "Custom Field ID/Name", "From Value")
issue in customFieldOptionChangedFrom("query", "User Picker Field", "username2")
issue in customFieldOptionChangedFrom("query", "Project Manager", "josé.saramago")
finds the issues that the Project Manager field changed from josé.saramago.
JQL functions below are applicable for Select List (Multiple choice), Group Picker (Multiple group), User Picker (Multiple user), Checkbox.
customFieldOptionAdded()
Search for information regarding the history of the issue.
Examples
issue in customFieldOptionAdded("query", "Custom Field ID/Name", "Added Value")
issue in customFieldOptionAdded("query", "User Picker Field", "username2")
issue in customFieldOptionAdded("query", "Project Manager", "josé.saramago")
finds the issues that added josé.saramago to the Project Manager field.
customFieldOptionRemoved()
Search for information regarding the history of the issue.
Examples
issue in customFieldOptionRemoved("query", "Custom Field ID/Name", "Removed Value")
issue in customFieldOptionRemoved("query", "User Picker Field", "username2")
issue in customFieldOptionRemoved("query", "Project Manager", "josé.saramago")
finds the issues that removed josé.saramago from the Project Manager field.
workTypeChanged()
Search for changes regarding the work type.
Examples
issue in workTypeChanged("query", "From Type", "To Type")
issue in workTypeChanged("query", "Story", "Task")
finds the issues that moved from Story to Task.
workTypeChangedTo()
Search for changes regarding the work type.
Examples
issue in workTypeChangedTo("query", "To Type")
issue in workTypeChangedTo("query", "Story")
finds the issues that moved to Story.
workTypeChangedFrom()
Search for changes regarding the work type.
Examples
issue in workTypeChangedFrom("query", "From Type")
issue in workTypeChangedFrom("query", "Story")
finds the issues that moved from Story.