What is an Advanced Search?
An advanced search allows you to use structured queries to search for JIRA issues. Your search results will be displayed in the Issue Navigator, where you can export them to MS Excel and many other formats. You can also save and subscribe to your advanced searches if you wish.
When you perform an advanced search, you are using the JIRA Query Language (JQL).
A simple query in JQL (also known as a 'clause') consists of a field, followed by an operator, followed by one or more values or functions. For example, the following simple query will find all issues in the "TEST" project:
project = "TEST"
(This example uses the Project field, the EQUALS operator, and the value "TEST"
.)
Be aware that it is not possible to compare two fields.
JQL gives you some SQL-like syntax, such as the ORDER BY SQL keyword and ISNULL() SQL function (i.e. the NULL keyword in JQL). However, JQL is not a database query language. For example, JQL does not have a
SELECT
statement.
How to Perform an Advanced Search
- Choose Issues > Search for Issues. The issue navigator will be displayed.
- If there are existing search criteria, click the New filter button to reset the search criteria.
- If the Advanced link is showing, click it to switch to advanced searching.
- Type your query using the fields, operators and field values or functions.
- Click the Search button to run your query.
Performing Text Searches
You can use Lucene's text-searching features when performing searches on the following fields, using the CONTAINS operator:
- Summary
- Description
- Environment
- Comments
- custom fields which use the "Free Text Searcher"; this includes custom fields of the following built-in Custom Field Types
- Free Text Field (unlimited text)
- Text Field (< 255 characters)
- Read-only Text Field
The JQL field "text" as in text ~ "some words"
searches an issue's Summary, Description, Environment, Comments. It also searches all text custom fields. If you have many text custom fields you can improve performance of your queries by searching on specific fields, e.g. Summary ~ "some words" OR Description ~ "some words"
For details, please see the page on Performing Text Searches.
Using Auto-complete
As you type your query, JIRA will recognise the context and offer a list of "auto-complete" suggestions as follows:
The list of auto-complete suggestions is displayed alphabetically and includes the first 15 matches. Note that auto-complete suggestions are not offered for function parameters.
Please note:
- If no auto-complete suggestions are offered, your administrator may have disabled the "JQL Auto-complete" feature for your JIRA instance.
- If you prefer not to be offered auto-complete suggestions, click the "Turn off auto-complete" link below the "Query" box.
Auto-complete suggestions are not offered for all fields. Check the fields reference to see which fields support auto-complete.
Switching between 'Advanced' and 'Simple' Search
In general, a query created using 'Simple Search' will be able to be translated to 'Advanced Search' (i.e. JQL), and back again.
However, a query created using 'Advanced Search' may not be able to be translated to 'Simple Search', particularly if:
- the query contains an OR operator (note you can have an IN operator and it will be translated, e.g.
project in (A, B)
)- i.e. even though this query:
(project = JRA OR project = CONF)
is equivalent to this query:(project in (JRA, CONF))
, only the second query will be translated.
- i.e. even though this query:
- the query contains a NOT operator
- the query contains an EMPTY operator
- the query contains any of the comparison operators: !=, IS, IS NOT, >, >=, <, <=
- the query specifies a field and value that is related to a project (e.g. version, component, custom fields) and the project is not explicitly included in the query (e.g.
fixVersion = "4.0"
, without theAND project=JRA
). This is especially tricky with custom fields since they can be configured on a Project/Issue Type basis. The general rule of thumb is that if the query cannot be created in the 'Simple Search' form, then if it is created using 'Advanced Search' it will not be able to be translated to 'Simple Search'.
Setting Precedence of Operators
You can use parentheses in complex JQL statements to enforce the precedence of operators.
For example, if you want to find all resolved issues in the SysAdmin project as well as all issues (any status, any project) currently assigned to the system administrator (bobsmith), you can use parentheses to enforce the precedence of the boolean operators in your query, i.e.:
(status=resolved AND project=SysAdmin) OR assignee=bobsmith
Note that if you do not use parentheses, the statement will be evaluated left-to-right.
You can also use parentheses to group clauses, so that you can apply the NOT operator to the group.
Keywords Reference
A keyword in JQL is a word or phrase that does (or is) any of the following: List of Keywords: Used to combine multiple clauses, allowing you to refine your search. Note that you can use parentheses to control the order in which clauses are executed. Find all open issues in the "New office" project: Find all open, urgent issues that are assigned to jsmith: Find all issues in a particular project that are not assigned to jsmith: Find all issues for a specific release which consists of different version numbers across several projects: Find all issues where neither the Reporter nor the Assignee is Jack, Jill or John: ^top of keywords | ^^top of topic Used to combine multiple clauses, allowing you to expand your search. Note that you can use parentheses to control the order in which clauses are executed. (Note: also see IN, which can be a more convenient way to search for multiple values of a field.) Find all issues that were created by either jsmith or jbrown: Find all issues that are overdue or where no due date is set: ^top of keywords | ^^top of topic Used to negate individual clauses or a complex JQL query (a query made up of more than one clause) using parentheses, allowing you to refine your search. (Note: also see NOT EQUALS ("!="), DOES NOT CONTAIN ("!~"), NOT IN and IS NOT.) Find all issues that are assigned to any user except jsmith: Find all issues that were not created by either jsmith or jbrown: ^top of keywords | ^^top of topic Used to search for issues where a given field does not have a value. See also NULL. Note that EMPTY can only be used with fields that support the IS and IS NOT operators. To see a field's supported operators, check the individual field reference. Find all issues without a DueDate: or ^top of keywords | ^^top of topic Used to search for issues where a given field does not have a value. See also EMPTY. Note that NULL can only be used with fields that support the IS and IS NOT operators. To see a field's supported operators, check the individual field reference. Find all issues without a DueDate: or ^top of keywords | ^^top of topic Used to specify the fields by whose values the search results will be sorted. By default, the field's own sorting order will be used. You can override this by specifying ascending order (" Find all issues without a DueDate, sorted by CreationDate: Find all issues without a DueDate, sorted by CreationDate, then by Priority (highest to lowest): Find all issues without a DueDate, sorted by CreationDate, then by Priority (lowest to highest): Ordering by Components or Versions will list the returned issues first by Project and only then by the field's natural order (see JRA-31113).AND
Examples
project = "New office" and status = "open"
status = open and priority = urgent and assignee = jsmith
project = JRA and assignee != jsmith
project in (JRA,CONF) and fixVersion = "3.14"
reporter not in (Jack,Jill,John) and assignee not in (Jack,Jill,John)
OR
Examples
reporter = jsmith or reporter = jbrown
duedate < now() or duedate is empty
NOT
Examples
not assignee = jsmith
not (reporter = jsmith or reporter = jbrown)
EMPTY
EMPTY is not equivalent to NOT EQUALS (!=)
Examples
duedate = empty
duedate is empty
NULL
Examples
duedate = null
duedate is null
ORDER BY
asc
") or descending order ("desc
").Examples
duedate = empty order by created
duedate = empty order by created, priority desc
duedate = empty order by created, priority asc
Operators Reference
An operator in JQL is one or more symbols or words which compares the value of a field on its left with one or more values (or functions) on its right, such that only true results are retrieved by the clause. Some operators may use the NOT keyword. List of Operators: The " To find issues where the value of a specified field exactly matches multiple values, use multiple " Find all issues that were created by jsmith: Find all issues that were created by John Smith: ^top of operators | ^^top of topic The " Note that typing The " Find all issues that are assigned to any user except jsmith: or: Find all issues that are not assigned to jsmith: Find all issues that were reported by me but are not assigned to me: Find all issues where the Reporter or Assignee is anyone except John Smith: Find all issues that are not unassigned: or ^top of operators | ^^top of topic The " Note that the " Find all issues with more than 4 votes: Find all overdue issues: Find all issues where priority is higher than "Normal": ^top of operators | ^^top of topic The " Note that the " Find all issues with 4 or more votes: Find all issues due on or after 31/12/2008: Find all issues created in the last five days: ^top of operators | ^^top of topic The " Note that the " Find all issues with less than 4 votes: ^top of operators | ^^top of topic The " Note that the " Find all issues with 4 or fewer votes: Find all issues that have not been updated in the past month (30 days): ^top of operators | ^^top of topic The " Using " Find all issues that were created by either jsmith or jbrown or jjones: Find all issues where the Reporter or Assignee is either Jack or Jill: Find all issues in version 3.14 or version 4.2: ^top of operators | ^^top of topic The " Using " The " Find all issues where the Assignee is someone other than Jack, Jill or John: Find all issues where the Assignee is not Jack, Jill or John: Find all issues where the FixVersion is not 'A', 'B', 'C' or 'D': Find all issues where the FixVersion is not 'A', 'B', 'C' or 'D', or has not been specified: ^top of operators | ^^top of topic The " The JQL field "text" as in Note: when using the " Find all issues where the Summary contains the word "win" (or simple derivatives of that word, such as "wins"): Find all issues where the Summary contains a wild-card match for the word "win": Find all issues where the Summary contains the word "issue" and the word "collector": Find all issues where the Summary contains the exact phrase "full screen" (see Reserved Characters for details on how to escape quote-marks and other special characters): ^top of operators | ^^top of topic The " The JQL field "text" as in Note: when using the " Find all issues where the Summary does not contain the word "run" (or derivatives of that word, such as "running" or "ran"): ^top of operators | ^^top of topic The " Note that not all fields are compatible with this operator; see the individual field reference for details. Find all issues that have no Fix Version: or ^top of operators | ^^top of topic The " Note that not all fields are compatible with this operator; see the individual field reference for details. Find all issues that have one or more votes: or ^top of operators | ^^top of topic The " (Note: This operator can be used with the Assignee, Fix Version, Priority, Reporter, Resolution and Status fields only.) Find issues that currently have, or previously had, a status of 'In Progress': Find issues that were resolved by Joe Smith before 2nd February: Find issues that were resolved by Joe Smith during 2010: ^top of operators | ^^top of topic The " Using " (Note: This operator can be used with the Assignee, Fix Version, Priority, Reporter, Resolution and Status fields only.) Find all issues that currently have, or previously had, a status of 'Resolved' or 'In Progress': ^top of operators | ^^top of topic The " Using " (Note: This operator can be used with the Assignee, Fix Version, Priority, Reporter, Resolution and Status fields only.) Find issues that have never had a status of 'Resolved' or 'In Progress': Find issues that did not have a status of 'Resolved' or 'In Progress' before 2nd February: ^top of operators | ^^top of topic The " (Note: This operator can be used with the Assignee, Fix Version, Priority, Reporter, Resolution and Status fields only.) Find issues that do not have, and has never had, a status of 'In Progress': Find issues that did not have a status of 'In Progress' before 2nd February: ^top of operators | ^^top of topic The " This operator has the following optional predicates: (Note: This operator can be used with the Assignee, Fix Version, Priority, Reporter, Resolution and Status fields only.) Find issues whose assignee had changed: Find issues whose status had changed from 'In Progress' back to 'Open': Find issues whose priority was changed by user 'freddo' after the start and before the end of the current week.EQUALS: =
=
" operator is used to search for issues where the value of the specified field exactly matches the specified value. (Note: cannot be used with text fields; see the CONTAINS operator instead.)=
" statements with the AND operator.Examples
reporter = jsmith
reporter = "John Smith"
NOT EQUALS: !=
!=
" operator is used to search for issues where the value of the specified field does not match the specified value. (Note: cannot be used with text fields; see the DOES NOT MATCH ("!~
") operator instead.)field != value
is the same as typing NOT field = value
, and that field != EMPTY
is the same as field IS_NOT EMPTY
.!=
" operator will not match a field that has no value (i.e. a field that is empty). For example, component != fred
will only match issues that have a component and the component is not "fred". To find issues that have a component other than "fred" or have no component, you would need to type: component != fred or component is empty
.Examples
not assignee = jsmith
assignee != jsmith
assignee != jsmith or assignee is empty
reporter = currentUser() and assignee != currentUser()
assignee != "John Smith" or reporter != "John Smith"
assignee is not empty
assignee != null
GREATER THAN: >
>
" operator is used to search for issues where the value of the specified field is greater than the specified value. Cannot be used with text fields.>
" operator can only be used with fields which support ordering (e.g. date fields and version fields). To see a field's supported operators, check the individual field reference.Examples
votes > 4
duedate < now() and resolution is empty
priority > normal
GREATER THAN EQUALS: >=
>=
" operator is used to search for issues where the value of the specified field is greater than or equal to the specified value. Cannot be used with text fields.>=
" operator can only be used with fields which support ordering (e.g. date fields and version fields). To see a field's supported operators, check the individual field reference.Examples
votes >= 4
duedate >= "2008/12/31"
created >= "-5d"
LESS THAN: <
<
" operator is used to search for issues where the value of the specified field is less than the specified value. Cannot be used with text fields.<
" operator can only be used with fields which support ordering (e.g. date fields and version fields). To see a field's supported operators, check the individual field reference.Examples
votes < 4
LESS THAN EQUALS: <=
<=
" operator is used to search for issues where the value of the specified field is less than or equal to than the specified value. Cannot be used with text fields.<=
" operator can only be used with fields which support ordering (e.g. date fields and version fields). To see a field's supported operators, check the individual field reference.Examples
votes <= 4
updated <= "-4w 2d"
IN
IN
" operator is used to search for issues where the value of the specified field is one of multiple specified values. The values are specified as a comma-delimited list, surrounded by parentheses.IN
" is equivalent to using multiple EQUALS (=)
statements, but is shorter and more convenient. That is, typing reporter IN (tom, jane, harry)
is the same as typing reporter = "tom" OR reporter = "jane" OR reporter = "harry"
.Examples
reporter in (jsmith,jbrown,jjones)
reporter in (Jack,Jill) or assignee in (Jack,Jill)
affectedVersion in ("3.14", "4.2")
NOT IN
NOT IN
" operator is used to search for issues where the value of the specified field is not one of multiple specified values.NOT IN
" is equivalent to using multiple NOT_EQUALS (!=)
statements, but is shorter and more convenient. That is, typing reporter NOT IN (tom, jane, harry)
is the same as typing reporter != "tom" AND reporter != "jane" AND reporter != "harry"
.NOT IN
" operator will not match a field that has no value (i.e. a field that is empty). For example, assignee not in (jack,jill)
will only match issues that have an assignee and the assignee is not "jack" or "jill". To find issues that are assigned to someone other than "jack" or "jill" or are unassigned, you would need to type: assignee not in (jack,jill) or assignee is empty
.Examples
assignee not in (Jack,Jill,John)
assignee not in (Jack,Jill,John) or assignee is empty
FixVersion not in (A, B, C, D)
FixVersion not in (A, B, C, D) or FixVersion is empty
CONTAINS: ~
~
" operator is used to search for issues where the value of the specified field matches the specified value (either an exact match or a "fuzzy" match — see examples below). For use with text fields only, i.e.:text ~ "some words"
searches an issue's Summary, Description, Environment, Comments. It also searches all text custom fields. If you have many text custom fields you can improve performance of your queries by searching on specific fields, e.g. Summary ~ "some words" OR Description ~ "some words"
~
" operator, the value on the right-hand side of the operator can be specified using JIRA text-search syntax.Examples
summary ~ win
summary ~ "win*"
summary ~ "issue collector"
summary ~ "\"full screen\""
DOES NOT CONTAIN: !~
!~
" operator is used to search for issues where the value of the specified field is not a "fuzzy" match for the specified value. For use with text fields only, i.e.:text ~ "some words"
searches an issue's Summary, Description, Environment, Comments. It also searches all text custom fields. If you have many text custom fields you can improve performance of your queries by searching on specific fields, e.g. Summary ~ "some words" OR Description ~ "some words"
!~
" operator, the value on the right-hand side of the operator can be specified using JIRA text-search syntax.Examples
summary !~ run
IS
IS
" operator can only be used with EMPTY or NULL. That is, it is used to search for issues where the specified field has no value.Examples
fixVersion is empty
fixVersion is null
IS NOT
IS NOT
" operator can only be used with EMPTY or NULL. That is, it is used to search for issues where the specified field has a value.Examples
votes is not empty
votes is not null
WAS
WAS
" operator is used to find issues that currently have, or previously had, the specified value for the specified field.AFTER "date"
BEFORE "date"
BY "username"
DURING ("date1","date2")
ON "date"
Examples
status WAS "In Progress"
status WAS "Resolved" BY jsmith BEFORE "2011/02/02"
status WAS "Resolved" BY jsmith DURING ("2010/01/01","2011/01/01")
WAS IN
WAS IN
" operator is used to find issues that currently have, or previously had, any of multiple specified values for the specified field. The values are specified as a comma-delimited list, surrounded by parentheses.WAS IN
" is equivalent to using multiple WAS
statements, but is shorter and more convenient. That is, typing status WAS IN ('Resolved', 'Closed')
is the same as typing status WAS "Resolved" OR status WAS "Closed"
.AFTER "date"
BEFORE "date"
BY "username"
DURING ("date1","date2")
ON "date"
Examples
status WAS IN ("Resolved","In Progress")
WAS NOT IN
WAS NOT IN
" operator is used to search for issues where the value of the specified field has never been one of multiple specified values.WAS NOT IN
" is equivalent to using multiple WAS_NOT
statements, but is shorter and more convenient. That is, typing status WAS NOT IN ("Resolved","In Progress")
is the same as typing status WAS NOT "Resolved" AND status WAS NOT "In Progress"
.AFTER "date"
BEFORE "date"
BY "username"
DURING ("date1","date2")
ON "date"
Examples
status WAS NOT IN ("Resolved","In Progress")
status WAS NOT IN ("Resolved","In Progress") BEFORE "2011/02/02"
WAS NOT
WAS NOT
" operator is used to find issues that have never had the specified value for the specified field.AFTER "date"
BEFORE "date"
BY "username"
DURING ("date1","date2")
ON "date"
Examples
status WAS NOT "In Progress"
status WAS NOT "In Progress" BEFORE "2011/02/02"
CHANGED
CHANGED
" operator is used to find issues that have a value which had changed for the specified field.AFTER "date"
BEFORE "date"
BY "username"
DURING ("date1","date2")
ON "date"
FROM "oldvalue"
TO "newvalue"
Examples
assignee CHANGED
status CHANGED FROM "In Progress" TO "Open"
priority CHANGED BY freddo BEFORE endOfWeek() AFTER startOfWeek()
Fields Reference
A field in JQL is a word that represents a JIRA field (or a custom field that has already been defined in JIRA). In a clause, a field is followed by an operator, which in turn is followed by one or more values (or functions). The operator compares the value of the field with one or more values or functions on the right, such that only true results are retrieved by the clause. List of Fields: Search for issues that are assigned to a particular Affects Version(s). You can search by version name or version ID (i.e. the number that JIRA automatically allocates to a version). It is safer to search by version ID than by version name Different projects may have versions with the same name, so searching by version name may return issues from multiple projects. It is also possible for your JIRA administrator to change the name of a version, which could break any saved filters which rely on that name. Version IDs, however, are unique and cannot be changed. Note: this field supports auto-complete. VERSION = != ~ !~ > >= < <= IS IS NOT IN NOT IN WAS WAS IN WAS NOT WAS NOT IN Note that the comparison operators (e.g. ">") use the version order that has been set up by your project administrator, not a numeric or alphabetic order. Find issues with an AffectedVersion of 3.14: (Note that full-stops are reserved characters, so they need to be surrounded by quote marks.) Find issues with an AffectedVersion of "Big Ted": Find issues with an AffectedVersion ID of 10350: ^top of fields | ^^top of topic Search for issues that are assigned to a particular user. You can search by the user's Full Name, ID or Email Address. Note: this field supports auto-complete. USER = != ~ !~ > >= < <= IS IS NOT IN NOT IN WAS WAS IN WAS NOT WAS NOT IN When used with the EQUALS and NOT EQUALS operators, this field supports: Find issues that are assigned to John Smith: or Find issues that are currently assigned, or were previously assigned, to John Smith: or Find issues that are assigned by the user with email address "[email protected]": (Note that full-stops and "@" symbols are reserved characters, so the email address needs to be surrounded by quote-marks.) ^top of fields | ^^top of topic Search for issues which have or do not have attachments. You can only use the EMPTY or IS NOT EMPTY operators for this field. Note: this field supports auto-complete. ATTACHMENT = != ~ !~ > >= < <= IS IS NOT IN NOT IN WAS WAS IN WAS NOT WAS NOT IN None Search for issues which have attachments Search for issues which do not have attachments ^top of fields | ^^top of topic Search for issues that belong to projects in a particular Category. Note: this field supports auto-complete. CATEGORY = != ~ !~ > >= < <= IS IS NOT IN NOT IN WAS WAS IN WAS NOT WAS NOT IN n/a Find issues that belong to projects in the "Alphabet Projects" Category: ^top of fields | ^^top of topic Search for issues that have a Comment which contains particular text. JIRA text-search syntax can be used. Note: this field does not support auto-complete. TEXT = != ~ !~ > >= < <= IS IS NOT IN NOT IN WAS WAS IN WAS NOT WAS NOT IN n/a Find issues where a Comment contains text that matches "My PC is quite old" (i.e. a "fuzzy" match: Find issues where a Comment contains the exact phrase "My PC is quite old": ^top of fields | ^^top of topic Search for issues that belong to a particular component(s) of a project. You can search by component name or component ID (i.e. the number that JIRA automatically allocates to a component). It is safer to search by component ID than by component name Different projects may have components with the same name, so searching by component name may return issues from multiple projects. It is also possible for your JIRA administrator to change the name of a component, which could break any saved filters which rely on that name. Component IDs, however, are unique and cannot be changed. Note: this field supports auto-complete. COMPONENT = != ~ !~ > >= < <= IS IS NOT IN NOT IN WAS WAS IN WAS NOT WAS NOT IN When used with the IN and NOT IN operators, Find issues in the "Comp1" or "Comp2" component: Find issues in the "Comp1" and"Comp2" components: or Find issues in the component with ID 20500: ^top of fields | ^^top of topic Search for issues that were created on, before or after a particular date (or date range). Note that if a time-component is not specified, midnight 00:00 will be assumed. Please note that the search results will be relative to your configured time zone (which is by default the JIRA server's time zone). Or use Note: this field does not support auto-complete. Alias: DATE = != ~ !~ > >= < <= IS IS NOT IN NOT IN WAS WAS IN WAS NOT WAS NOT IN Find all issues created before midnight 00:00 12th December 2010: Find all issues created on or before 12th December 2010 (but not 13th December 2010): Find all issues created on 12th December 2010 before 2:00pm: Find issues created less than one day ago: Find issues created in January 2011: Find issues created on 15 January 2011: ^top of fields | ^^top of topic Search for issues that were created by a particular user. You can search by the user's Full Name, ID or Email Address. Note: this field supports auto-complete. USER = != ~ !~ > >= < <= IS IS NOT IN NOT IN WAS WAS IN WAS NOT WAS NOT IN When used with the EQUALS and NOT EQUALS operators, this field supports: Search for issues that were created by Jill Jones: or Search for issues that were created by the user with email address "[email protected]": (Note that full-stops and "@" symbols are reserved characters, so the email address needs to be surrounded by quote-marks.) ^top of fields | ^^top of topic Only applicable if your JIRA administrator has created one or more Custom Fields. Search for issues where a particular Custom Field has a particular value. You can search by Custom Field name or Custom Field ID (i.e. the number that JIRA automatically allocates to an Custom Field). It is safer to search by Custom Field ID than by Custom Field name It is possible for a Custom Field to have the same name as a built-in JIRA system field, in which case JIRA will search on the system field (not your custom field). It is also possible for your JIRA administrator to change the name of a Custom Field, which could break any saved filters which rely on that name. Custom Field IDs, however, are unique and cannot be changed. Note: Alias: Depends on the Custom Field's configuration Different types of Custom Fields support different operators. For the default Custom Field Types, the following operators are supported: = != ~ !~ > >= < <= IS IS NOT IN NOT IN WAS WAS IN WAS NOT WAS NOT IN = != ~ !~ > >= < <= IS IS NOT IN NOT IN WAS WAS IN WAS NOT WAS NOT IN = != ~ !~ > >= < <= IS IS NOT IN NOT IN WAS WAS IN WAS NOT WAS NOT IN Different types of Custom Fields support different functions. For the default Custom Field Types, the following functions are supported: Find issues where the value of the "Location" Custom Field is "New York": Find issues where the value of the Custom Field with ID 10003 is "New York": Find issues where the value of the "Location" Custom Field is "London" or "Milan" or "Paris": Find issues where the "Location" Custom Field has no value: ^top of fields | ^^top of topic Search for issues where the Description contains particular text. JIRA text-search syntax can be used. Note: this field does not support auto-complete. TEXT = != ~ !~ > >= < <= IS IS NOT IN NOT IN WAS WAS IN WAS NOT WAS NOT IN n/a Find issues where the Description contains text that matches "Please see screenshot" (i.e. a "fuzzy" match): Find issues where the Description contains the exact phrase "Please see screenshot": ^top of fields | ^^top of topic Search for issues that were due on, before or after a particular date (or date range). Note that Due Date relates to the date only (not to the time). Or use Note: this field does not support auto-complete. Alias: DATE = != ~ !~ > >= < <= IS IS NOT IN NOT IN WAS WAS IN WAS NOT WAS NOT IN Find all issues due before 31st December 2010: Find all issues due on or before 31st December 2010: Find all issues due tomorrow: Find all issues due in January 2011: Find all issues due on 15 January 2011: ^top of fields | ^^top of topic Search for issues where the Environment contains particular text. JIRA text-search syntax can be used. Note: this field does not support auto-complete. TEXT = != ~ !~ > >= < <= IS IS NOT IN NOT IN WAS WAS IN WAS NOT WAS NOT IN n/a Find issues where the Environment contains text that matches "Third floor" (i.e. a "fuzzy" match): Find issues where the Environment contains the exact phrase "Third floor": ^top of fields | ^^top of topic Search for issues that belong to a particular Epic in JIRA Agile. The search is based on either the epic's Name, Issue Key or Issue ID (i.e. the number that JIRA automatically allocates to an Issue). Note: this field does not support auto-complete. Epic Link Relationship (this is a custom type created by JIRA Agile). = != ~ !~ > >= < <= IS IS NOT IN NOT IN WAS WAS IN WAS NOT WAS NOT IN When used with the IN or NOT IN operators, Find issues that belong to epic "Jupiter", which has issue key ANERDS-317: or ^top of fields | ^^top of topic You can use a saved filter to narrow your search. You can search by filter name or filter ID (i.e. the number that JIRA automatically allocates to a saved filter). It is safer to search by filter ID than by filter name It is possible for a filter name to be changed, which could break a saved filter that invokes another filter by name. Filter IDs, however, are unique and cannot be changed. Note: Aliases: FILTER = != ~ !~ > >= < <= IS IS NOT IN NOT IN WAS WAS IN WAS NOT WAS NOT IN n/a Search the results of the filter "My Saved Filter" (which has an ID of 12000) for issues assigned to the user jsmith: or ^top of fields | ^^top of topic Search for issues that are assigned to a particular Fix Version. You can search by version name or version ID (i.e. the number that JIRA automatically allocates to a version). It is safer to search by version ID than by version name Different projects may have versions with the same name, so searching by version name may return issues from multiple projects. It is also possible for your JIRA administrator to change the name of a version, which could break any saved filters that rely on that name. Version IDs, however, are unique and cannot be changed. Note: this field supports auto-complete. VERSION = != ~ !~ > >= < <= IS IS NOT IN NOT IN WAS WAS IN WAS NOT WAS NOT IN Note that the comparison operators (e.g. ">") use the version order that has been set up by your project administrator, not a numeric or alphabetic order. Find issues with a Fix Version of 3.14 or 4.2: (Note that full-stops are reserved characters, so they need to be surrounded by quote marks.) Find issues with a Fix Version of "Little Ted": Find issues with a Fix Version ID of 10001: Find issues with a Fix Version of 15.2 or sub-versions ^top of fields | ^^top of topic Search for issues with a particular Issue Key or Issue ID (i.e. the number that JIRA automatically allocates to an Issue). Note: this field does not support auto-complete. Aliases: ISSUE = != ~ !~ > >= < <= IS IS NOT IN NOT IN WAS WAS IN WAS NOT WAS NOT IN When used with the IN or NOT IN operators, Find the issue with key "ABC-123": ^top of fields | ^^top of topic Search for issues that were last viewed on, before or after a particular date (or date range). Note that if a time-component is not specified, midnight 00:00 will be assumed. Please note that the search results will be relative to your configured time zone (which is by default the JIRA server's time zone). Or use Note: this field does not support auto-complete. DATE = != ~ !~ > >= < <= IS IS NOT IN NOT IN WAS WAS IN WAS NOT WAS NOT IN Find all issues last viewed before 12th December 2010: Find all issues last viewed on or before 12th December 2010 (but not 13th December 2010): Find all issues last viewed on 12th December 2010 before 2:00pm: Find issues last viewed less than one day ago: Find issues last viewed in January 2011: Find issues last viewed on 15 January 2011: ^top of fields | ^^top of topic Only available if Issue Level Security has been enabled by your JIRA administrator. Search for issues with a particular Security Level. You can search by Issue Security Level name or Issue Security Level ID (i.e. the number that JIRA automatically allocates to an Issue Security Level). It is safer to search by Security Level ID than by Security Level name It is possible for your JIRA administrator to change the name of a Security Level, which could break any saved filter which rely on that name. Security Level IDs, however, are unique and cannot be changed. Note: this field supports auto-complete. SECURITY LEVEL = != ~ !~ > >= < <= IS IS NOT IN NOT IN WAS WAS IN WAS NOT WAS NOT IN n/a Search for issues with a Security Level of "Really High" or "level1": Search for issues with a Security Level ID of 123: ^top of fields | ^^top of topic Only available if time-tracking has been enabled by your JIRA administrator. Search for issues where the Original Estimate is set to a particular value (i.e. a number, not a date or date range). Use "w", "d", "h" and "m" to specify weeks, days, hours or minutes. Note: this field does not support auto-complete. Alias: DURATION = != ~ !~ > >= < <= IS IS NOT IN NOT IN WAS WAS IN WAS NOT WAS NOT IN n/a Find issues with an Original Estimate of 1 hour: Find issues with an Original Estimate of more than 2 days: ^top of fields | ^^top of topic Only available if sub-tasks have been enabled by your JIRA administrator. Search for all sub-tasks of a particular issue. You can search by Issue Key or by Issue ID (i.e. the number that JIRA automatically allocates to an Issue). Note: this field does not support auto-complete. ISSUE = != ~ !~ > >= < <= IS IS NOT IN NOT IN WAS WAS IN WAS NOT WAS NOT IN n/a Find issues that are sub-tasks of issue TEST-1234: ^top of fields | ^^top of topic Search for issues with a particular Priority. You can search by Priority name or Priority ID (i.e. the number that JIRA automatically allocates to a Priority). It is safer to search by Priorty ID than by Priority name It is possible for your JIRA administrator to change the name of a Priority, which could break any saved filter which rely on that name. Priority IDs, however, are unique and cannot be changed. Note: this field supports auto-complete. PRIORITY = != ~ !~ > >= < <= IS IS NOT IN NOT IN WAS WAS IN WAS NOT WAS NOT IN n/a Find issues with a Priority of "High": Find issues with a Priority ID of 10000: ^top of fields | ^^top of topic Search for issues that belong to a particular Project. You can search by Project Name, by Project Key or by Project ID (i.e. the number that JIRA automatically allocates to a project). In the rare case where there is a project whose project key is the same as another project's name, then the project key takes preference and hides results from the second project. Note: this field supports auto-complete. PROJECT = != ~ !~ > >= < <= IS IS NOT IN NOT IN WAS WAS IN WAS NOT WAS NOT IN When used with the IN and NOT IN operators, Find issues that belong to the Project that has the name "ABC Project": Find issues that belong to the Project that has the key "ABC": Find issues that belong to the Project that has the ID "1234": ^top of fields | ^^top of topic Only available if time-tracking has been enabled by your JIRA administrator. Search for issues where the Remaining Estimate is set to a particular value (i.e. a number, not a date or date range). Use "w", "d", "h" and "m" to specify weeks, days, hours or minutes. Note: this field does not support auto-complete. Alias: DURATION = != ~ !~ > >= < <= IS IS NOT IN NOT IN WAS WAS IN WAS NOT WAS NOT IN n/a Find issues with a Remaining Estimate of more than 4 hours: ^top of fields | ^^top of topic Search for issues that were reported by a particular user. This may be the same as the creator, but can be distinct. You can search by the user's Full Name, ID or Email Address. Note: this field supports auto-complete. USER = != ~ !~ > >= < <= IS IS NOT IN NOT IN WAS WAS IN WAS NOT WAS NOT IN When used with the EQUALS and NOT EQUALS operators, this field supports: Search for issues that were reported by Jill Jones: or Search for issues that were reported by the user with email address "[email protected]": (Note that full-stops and "@" symbols are reserved characters, so the email address needs to be surrounded by quote-marks.) ^top of fields | ^^top of topic Search for issues that have a particular Resolution You can search by Resolution name or Resolution ID (i.e. the number that JIRA automatically allocates to a Resolution). It is safer to search by Resolution ID than Resolution name It is possible for your JIRA administrator to change the name of a Resolution, which could break any saved filter which rely on that name. Resolution IDs, however, are unique and cannot be changed. Note: this field supports auto-complete. RESOLUTION = != ~ !~ > >= < <= IS IS NOT IN NOT IN WAS WAS IN WAS NOT WAS NOT IN n/a Find issues with a Resolution of "Cannot Reproduce" or "Won't Fix": Find issues with a Resolution ID of 5: Find issues that do not have a Resolution: ^top of fields | ^^top of topic Search for issues that were resolved on, before or after a particular date (or date range). Note that if a time-component is not specified, midnight 00:00 will be assumed. Please note that the search results will be relative to your configured time zone (which is by default the JIRA server's time zone). Or use Note: this field does not support auto-complete. Alias: DATE = != ~ !~ > >= < <= IS IS NOT IN NOT IN WAS WAS IN WAS NOT WAS NOT IN Find all issues that were resolved before 31st December 2010 (but not on 31st December 2010): Find all issues that were resolved before 2.00pm on 31st December 2010: Find all issues that were resolved on or before 31st December 2010: Find issues that were resolved in January 2011: Find issues that were resolved on 15 January 2011: Find issues that were resolved in the last hour: ^top of fields | ^^top of topic Search for issues that are assigned to a particular sprint in JIRA Agile. This works for active sprints and future sprints. The search is based on either the sprint name or the sprint ID (i.e. the number that JIRA automatically allocates to a sprint). Number = != ~ !~ > >= < <= IS IS NOT IN NOT IN WAS WAS IN WAS NOT WAS NOT IN Find issues that belong to sprint 999: Find issues that belong to sprint "February 1": Find issues that belong to either "February 1", "February 2" or "February 3": Find issues that are assigned to a sprint: ^top of fields | ^^top of topic Search for issues that have a particular Status. You can search by Status name or Status ID (i.e. the number that JIRA automatically allocates to a Status). It is safer to search by Status ID than Status name It is possible for your JIRA administrator to change the name of a Status, which could break any saved filter which rely on that name. Status IDs, however, are unique and cannot be changed. Please note, though, that the Note: this field supports auto-complete. STATUS = != ~ !~ > >= < <= IS IS NOT IN NOT IN WAS WAS IN WAS NOT WAS NOT IN n/a Find issues with a Status of "Open": Find issues with a Status ID of 1: Find issues that currently have, or previously had, a Status of "Open": ^top of fields | ^^top of topic Search for issues where the Summary contains particular text. JIRA text-search syntax can be used. Note: this field does not support auto-complete. TEXT = != ~ !~ > >= < <= IS IS NOT IN NOT IN WAS WAS IN WAS NOT WAS NOT IN n/a Find issues where the Summary contains text that matches "Error saving file" (i.e. a "fuzzy" match): Find issues where the Summary contains the exact phrase "Error saving file": ^top of fields | ^^top of topic This is a "master-field" that allows you to search all text fields, i.e.: The JQL field "text" as in Notes: TEXT = != ~ !~ > >= < <= IS IS NOT IN NOT IN WAS WAS IN WAS NOT WAS NOT IN n/a Find issues where a text field matches the word "Fred": or Find all issues where a text field contains the exact phrase "full screen": ^top of fields | ^^top of topic Search for issues that have a particular Issue Type. You can search by Issue Type name or Issue Type ID (i.e. the number that JIRA automatically allocates to an Issue Type). It is safer to search by Type ID than Type name It is possible for your JIRA administrator to change the name of a Type, which could break any saved filter which rely on that name. Type IDs, however, are unique and cannot be changed. Note: this field supports auto-complete. Alias: ISSUE_TYPE = != ~ !~ > >= < <= IS IS NOT IN NOT IN WAS WAS IN WAS NOT WAS NOT IN n/a Find issues with an Issue Type of "Bug": Find issues with an Issue Type of "Bug" or "Improvement": Find issues with an Issue Type ID of 2: ^top of fields | ^^top of topic Only available if time-tracking has been enabled by your JIRA administrator. Search for issues where the Time Spent is set to a particular value (i.e. a number, not a date or date range). Use "w", "d", "h" and "m" to specify weeks, days, hours or minutes. Note: this field does not support auto-complete. DURATION = != ~ !~ > >= < <= IS IS NOT IN NOT IN WAS WAS IN WAS NOT WAS NOT IN n/a Find issues where the Time Spent is more than 5 days: ^top of fields | ^^top of topic Search for issues that were last updated on, before or after a particular date (or date range). Note that if a time-component is not specified, midnight 00:00 will be assumed. Please note that the search results will be relative to your configured time zone (which is by default the JIRA server's time zone). Or use Note: this field does not support auto-complete. Alias: DATE = != ~ !~ > >= < <= IS IS NOT IN NOT IN WAS WAS IN WAS NOT WAS NOT IN Find issues that were last updated before 12th December 2010: Find issues that were last updated on or before 12th December 2010 (but not 13th December 2010): Find all issues that were last updated before 2.00pm on 31st December 2010: Find issues that were last updated more than two weeks ago: Find issues that were last updated on 15 January 2011: Find issues that were last updated in January 2011: ^top of fields | ^^top of topic Search for issues for which a particular user has voted. You can search by the user's Full Name, ID or Email Address. Note that you can only find issues for which you have the "View Voters and Watchers" permission, unless you are searching for your own votes. See also votedIssues. Note: this field supports auto-complete. USER = != ~ !~ > >= < <= IS IS NOT IN NOT IN WAS WAS IN WAS NOT WAS NOT IN When used with the EQUALS and NOT EQUALS operators, this field supports: Search for issues for which you have voted: Search for issues for which the user "jsmith" has voted: Search for issues for which a member of the group "jira-developers" has voted: ^top of fields | ^^top of topic Search for issues with a specified number of votes. Note: this field does not support auto-complete. NUMBER = != ~ !~ > >= < <= IS IS NOT IN NOT IN WAS WAS IN WAS NOT WAS NOT IN n/a Find all issues that have 12 or more votes: ^top of fields | ^^top of topic Search for issues that a particular user is watching. You can search by the user's Full Name, ID or Email Address. Note that you can only find issues for which you have the "View Voters and Watchers" permission, unless you are searching for issues where you are the watcher. See also watchedIssues. Note: this field supports auto-complete. USER = != ~ !~ > >= < <= IS IS NOT IN NOT IN WAS WAS IN WAS NOT WAS NOT IN When used with the EQUALS and NOT EQUALS operators, this field supports: Search for issues that you are watching: Search for issues that the user "jsmith" is watching: Search for issues that are being watched by a member of the group "jira-developers": ^top of fields | ^^top of topic Search for issues with a specified number of watchers. Note: this field does not support auto-complete. NUMBER = != ~ !~ > >= < <= IS IS NOT IN NOT IN WAS WAS IN WAS NOT WAS NOT IN n/a Find all issues that are being watched by more than 3 people: ^top of fields | ^^top of topic Only available if time-tracking has been enabled by your JIRA administrator. Search for issues where the Work Ratio has a particular value. Work Ratio is calculated as follows: workRatio = timeSpent / originalEstimate) x 100 Note: this field does not support auto-complete. NUMBER = != ~ !~ > >= < <= IS IS NOT IN NOT IN WAS WAS IN WAS NOT WAS NOT IN n/a Find issues on which more than 75% of the Original Estimate has been spent:
Affected Version
Syntax
affectedVersion
Field Type
Supported Operators
CHANGED Supported Functions
Examples
affectedVersion = "3.14"
affectedVersion = "Big Ted"
affectedVersion = 10350
Assignee
Syntax
assignee
Field Type
Supported Operators
CHANGED Supported Functions
Examples
assignee = "John Smith"
assignee = jsmith
assignee WAS "John Smith"
assignee WAS jsmith
assignee = "[email protected]"
Attachments
Syntax
attachments
Field Type
Supported Operators
CHANGED Supported Functions
Examples
attachments IS NOT EMPTY
attachments IS EMPTY
Category
Syntax
category
Field Type
Supported Operators
CHANGED Supported Functions
Examples
category = "Alphabet Projects"
Comment
Syntax
comment
Field Type
Supported Operators
CHANGED Supported Functions
Examples
comment ~ "My PC is quite old"
comment ~ "\"My PC is quite old\""
Component
Syntax
component
Field Type
Supported Operators
CHANGED Supported Functions
component
supports:Examples
component in (Comp1, Comp2)
component in (Comp1) and component in (Comp2)
component = Comp1 and component = Comp2
component = 20500
Created
"yyyy/MM/dd HH:mm"
"yyyy-MM-dd HH:mm"
"yyyy/MM/dd"
"yyyy-MM-dd"
"w"
(weeks), "d"
(days), "h"
(hours) or "m"
(minutes) to specify a date relative to the current time. The default is "m"
(minutes). Be sure to use quote-marks ("
); if you omit the quote-marks, the number you supply will be interpreted as milliseconds after epoch (1970-1-1).Syntax
created
createdDate
Field Type
Supported Operators
CHANGED Supported Functions
Examples
created < "2010/12/12"
created <= "2010/12/13"
created > "2010/12/12" and created < "2010/12/12 14:00"
created > "-1d"
created > "2011/01/01" and created < "2011/02/01"
created > "2011/01/15" and created < "2011/01/16"
Creator
Syntax
creator
Field Type
Supported Operators
CHANGED Supported Functions
Examples
creator = "Jill Jones"
creator = jjones
creator = "[email protected]"
Custom Field
Syntax
CustomFieldName
cf[CustomFieldID]
Field Type
Supported Operators
CHANGED CHANGED CHANGED Supported Functions
Examples
location = "New York"
cf[10003] = "New York"
cf[10003] in ("London", "Milan", "Paris")
location != empty
Description
Syntax
description
Field Type
Supported Operators
CHANGED Supported Functions
Examples
description ~ "Please see screenshot"
description ~ "\"Please see screenshot\""
Due
"yyyy/MM/dd"
"yyyy-MM-dd"
"w"
(weeks) or "d"
(days) to specify a date relative to the current date. Be sure to use quote-marks ("
).Syntax
due
dueDate
Field Type
Supported Operators
CHANGED Supported Functions
Examples
due < "2010/12/31"
due <= "2011/01/01"
due = "1d"
due >= "2011/01/01" and due <= "2011/01/31"
due = "2011/01/15"
Environment
Syntax
environment
Field Type
Supported Operators
CHANGED Supported Functions
Examples
environment ~ "Third floor"
environment ~ "\"Third floor\""
Epic Link
Only available if you are using JIRA Agile 6.1.2 or later.
Syntax
"epic link"
Field Type
Supported Operators
CHANGED Supported Functions
epic link
supports:Examples
"epic link" = ANERDS-317
"epic link" = Jupiter
Filter
Syntax
filter
request
savedFilter
searchRequest
Field Type
Supported Operators
CHANGED Supported Functions
Examples
filter = "My Saved Filter" and assignee = jsmith
filter = 12000 and assignee = jsmith
Fix Version
Syntax
fixVersion
Field Type
Supported Operators
CHANGED Supported Functions
Examples
fixVersion in ("3.14", "4.2")
fixVersion = "Little Ted"
fixVersion = 10001
fixVersion in (versionMatch("15.2.*"))
Issue Key
Syntax
issueKey
id
issue
key
Field Type
Supported Operators
CHANGED Supported Functions
issueKey
supports:Examples
issueKey = ABC-123
LastViewed
"yyyy/MM/dd HH:mm"
"yyyy-MM-dd HH:mm"
"yyyy/MM/dd"
"yyyy-MM-dd"
"w"
(weeks), "d"
(days), "h"
(hours) or "m"
(minutes) to specify a date relative to the current time. The default is "m"
(minutes). Be sure to use quote-marks ("
); if you omit the quote-marks, the number you supply will be interpreted as milliseconds after epoch (1970-1-1).Syntax
lastViewed
Field Type
Supported Operators
CHANGED Supported Functions
Examples
lastViewed < "2010/12/12"
lastViewed <= "2010/12/13"
lastViewed > "2010/12/12" and created < "2010/12/12 14:00"
lastViewed > "-1d"
lastViewed > "2011/01/01" and created < "2011/02/01"
lastViewed > "2011/01/15" and created < "2011/01/16"
Level
Syntax
level
Field Type
Supported Operators
CHANGED Supported Functions
Examples
level in ("Really High", level1)
level = 123
Original Estimate
Syntax
originalEstimate
timeOriginalEstimate
Field Type
Supported Operators
CHANGED Supported Functions
Examples
originalEstimate = 1h
originalEstimate > 2d
Parent
Syntax
parent
Field Type
Supported Operators
CHANGED Supported Functions
Examples
parent = TEST-1234
Priority
Syntax
priority
Field Type
Supported Operators
CHANGED Supported Functions
Examples
priority = High
priority = 10000
Project
Syntax
project
Field Type
Supported Operators
CHANGED Supported Functions
project
supports:Examples
project = "ABC Project"
project = "ABC"
project = 1234
Remaining Estimate
Syntax
remainingEstimate
timeEstimate
Field Type
Supported Operators
CHANGED Supported Functions
Examples
remainingEstimate > 4h
Reporter
Syntax
reporter
Field Type
Supported Operators
CHANGED Supported Functions
Examples
reporter = "Jill Jones"
reporter = jjones
reporter = "[email protected]"
Resolution
Syntax
resolution
Field Type
Supported Operators
CHANGED Supported Functions
Examples
resolution in ("Cannot Reproduce", "Won't Fix")
resolution = 5
resolution = unresolved
Resolved
"yyyy/MM/dd HH:mm"
"yyyy-MM-dd HH:mm"
"yyyy/MM/dd"
"yyyy-MM-dd"
"w"
(weeks), "d"
(days), "h"
(hours) or "m"
(minutes) to specify a date relative to the current time. The default is "m"
(minutes). Be sure to use quote-marks ("
); if you omit the quote-marks, the number you supply will be interpreted as milliseconds after epoch (1970-1-1).Syntax
resolved
resolutionDate
Field Type
Supported Operators
CHANGED Supported Functions
Examples
resolved <= "2010/12/31"
resolved < "2010/12/31 14:00"
resolved <= "2011/01/01"
resolved > "2011/01/01" and resolved < "2011/02/01"
resolved > "2011/01/15" and resolved < "2011/01/16"
resolved > -1h
Sprint
Only available if you are using JIRA Agile.
Syntax
sprint
If you have multiple sprints with similar (or identical) names, you can simply search by using the sprint name — or even just part of it. The possible matches will be shown in the autocomplete drop-down, with the sprint dates shown to help you distinguish between them. (The sprint ID will also be shown, in brackets).
Field Type
Supported Operators
CHANGED Supported Functions
Examples
sprint = 999
sprint = "February 1"
sprint in ("February 1","February 2","February 3")
sprint is not empty
Status
WAS
, WAS_NOT
, WAS_IN
and WAS_NOT_IN
operators can only be used with the name (not the ID).Syntax
status
Field Type
Supported Operators
CHANGED Supported Functions
Examples
status = Open
status = 1
status WAS Open
Summary
Syntax
summary
Field Type
Supported Operators
CHANGED Supported Functions
Examples
summary ~ "Error saving file"
summary ~ "\"Error saving file\""
Text
text ~ "some words"
searches an issue's Summary, Description, Environment, Comments. It also searches all text custom fields. If you have many text custom fields you can improve performance of your queries by searching on specific fields, e.g. Summary ~ "some words" OR Description ~ "some words"
text
master-field can only be used with the CONTAINS operator ("~
").Syntax
text
Field Type
Supported Operators
CHANGED Supported Functions
Examples
text ~ "Fred"
text ~ Fred
text ~ "\"full screen\""
Type
Syntax
type
issueType
Field Type
Supported Operators
CHANGED Supported Functions
Examples
type = Bug
issueType in (Bug,Improvement)
issueType = 2
Time Spent
Syntax
timeSpent
Field Type
Supported Operators
CHANGED Supported Functions
Examples
timeSpent > 5d
Updated
"yyyy/MM/dd HH:mm"
"yyyy-MM-dd HH:mm"
"yyyy/MM/dd"
"yyyy-MM-dd"
"w"
(weeks), "d"
(days), "h"
(hours) or "m"
(minutes) to specify a date relative to the current time. The default is "m"
(minutes). Be sure to use quote-marks ("
); if you omit the quote-marks, the number you supply will be interpreted as milliseconds after epoch (1970-1-1).Syntax
updated
updatedDate
Field Type
Supported Operators
CHANGED Supported Functions
Examples
updated < "2010/12/12"
updated < "2010/12/13"
updated < "2010/12/31 14:00"
updated < "-2w"
updated > "2011/01/15" and updated < "2011/01/16"
updated > "20011/01/01" and updated < "2011/02/01"
Voter
Syntax
voter
Field Type
Supported Operators
CHANGED Supported Functions
Examples
voter = currentUser()
voter = "jsmith"
voter in membersOf("jira-developers")
Votes
Syntax
votes
Field Type
Supported Operators
CHANGED Supported Functions
Examples
votes >= 12
Watcher
Syntax
watcher
Field Type
Supported Operators
CHANGED Supported Functions
Examples
watcher = currentUser()
watcher = "jsmith"
watcher in membersOf("jira-developers")
Watchers
Syntax
watchers
Field Type
Supported Operators
CHANGED Supported Functions
Examples
watchers > 3
Work Ratio
Syntax
workRatio
Field Type
Supported Operators
CHANGED Supported Functions
Examples
workRatio > 75