Skip to end of metadata
Go to start of metadata

You are viewing an old version of this content. View the current version.

Compare with Current View Version History

« Previous Version 2 Current »

As you know, Jira Query Language (JQL) is a powerful query language for searching and filtering issues. It allows users to construct complex queries using keywords, operators, and functions to retrieve specific sets of issues based on various criteria, such as status, assignee, or custom fields.

Our custom fields serve the same purposes, yet they feature a distinct structure compared to the standard Jira fields that you may be accustomed to.



General structure

field: {
  number: 100,
  word: "hundred"
}

Object type

All our custom fields are of the object type, implying that the actual value is a property inherent to the field itself.

This design enables the utilization of multiple values and data types for a field and facilitates future extensions.

Basic example

Example: The priority party

The Priority Matrix encompasses three properties: impact, urgency, and the resulting priority, all of which are accessible in JQL. Jira provides autocomplete functionality to streamline their use.

Find properties and data types in the corresponding field documentation.

For example: https://help-seibertmedia.atlassian.net/wiki/spaces/ACF/pages/46399542/Priority+Matrix#JQL-expression


  • No labels