Advanced search
About the advanced search
Advanced case search allows you to search for a case using custom queries that match specified criteria. You can create fine-grained searches that extend beyond what is possible with basic search filters. For example, you can search for cases of a certain type that were added by a specific user between specified dates.
Some of the search criteria to keep in mind:
All searches are case-insensitive.
Spaces between elements of a search query are ignored.
Searching is supported on fields and case parameters.
You cannot directly search on comments, but a text search finds text in the case and task comments.
You can search for standard and custom fields.
How to perform advanced search
Go to Case Management > Cases on the left navigation.
Select Advanced instead of Basic as the search option at the top of the page.
The advanced search field is now available for you to enter custom queries.
The advanced search field provides instant feedback about the validity of the query you enter. If the query is valid, a green
checkmark is shown, as in the previous figure. If the search syntax isn't valid, a red
alert icon is shown.
Query structure
A simple advanced query has the following format:
field (operator) “value”
Example:
status = “closed”
You can create more complex queries by using the boolean operatorsand
andor
with parentheses added as needed.Example:
assignee != "auto" AND (status = "done" OR status = "todo")
To specify the ordering of the results, include theorder by
operator at the end of your query with the field and sort order (ascending or descending) specified. If the sort order isn’t specified, the default sort order is based on the relevance of the match.Example:
The following example sorts the search results in descending order based on thecreated
date:assignee=”peter” AND reporter=”john” order by created desc
Supported fields
Following fields are supported for advanced case search.
Field | Description |
---|---|
text | All the text in case title, case description, case comments, task title, task description, and task comments. |
status | Current state of the case: Closed, Open, in Progress, or Todo (for tasks), and so on. |
priority | Importance of the case: Critical, Blocker, Medium, Low, Informational, and so on. |
assignee | User the case is assigned to. Must be a complete username. |
reporter | User who opened the case. Must be a complete username. |
title | Case title. |
description | Case description. |
created | Date and time the case was created. These date and time strings are interpreted as in the UTC timezone. |
issuetype | Type of reported issue: case or task. |
casetype | Type of a case. For example, default or any customized name given while creating a case type. |
modifiedat | Modified date of a case. |
currentuser() | Filters Current user (Reporter, and/or Assignee, and/or the name created through |
Supported operators
Following operators are supported for advanced search queries.
Operator | Description |
---|---|
Contains, ~ | Matches if the field contains the indicated text string. Can be used with case title, case summary, case comments, task title, task summary, or task comments. Performing this type of search on a phrase is equivalent to an
finds the case with the title |
= | Matches the current state of the case: closed, open, or inprogress. |
!= | Matches if the current state of the case is not the specified value. |
>, <, >=, <= | Matches if the indicated comparison is valid. Applies only to the |
order by asc | Orders the results with the value of the specified field in ascending order. |
order by desc | Orders the results with the value of the specified field in descending order. |
and | Applies the boolean |
or | Applies the boolean |
Supported search types
Supported ISO format timezone
Advanced search supports timezone search in the advanced case search. The following example shows the search query for the timezone, issuetype = 'case' being the default.
Example: issuetype = 'case' and created >= '2021-04-09T00:00:00Z' and created <='2021-04-10T00:00:00Z' where, Z can be replaced according to the timezone.
Another example of the timezone search query is issuetype = 'case' and created >= '2021-04-09T00:00:00+05:30' and created <='2021-04-10T00:00:00+05:30'. Here, Z is replaced with GMT timezone (+05:30).
Search cases by created or modified date
The advanced search allows you to search for cases based on the created and modified date.
Example: issueType = 'case' and created > '2021-08-01' and modifiedat <='2021-08-31'
Search exact phrases using backtick syntax
The advanced search allows you to search for an exact phrase or term using a phrase query along with backtick syntax to get the exact match results.
Example - Search query without using backtick: title ~ "I get too many emails". This is a normal query search that returns all the cases that contain these words.
In this example - Search query using backtick, title ~ "I get too many emails" searching a phrase query within a backtick will return results with the exact match of the query provided.
Search cases by status type
You can search for cases by status type using a simple query in the Advanced Search field.
Example:
statusType = "Closed"
,statusType != "In progress"
, orstatusType = "Open"
.
Use"="
or"!="
in your search queries.
The status type that is linked to the status will be displayed as search results. The available status types areOpen
,In progress
, andClosed
.
Search cases with empty value set in the custom field
You can search for cases that contain empty values in one of the fields.
Example:
domain = ""
. This means that the query must search for all the null values in the domain field. The search shows 699 cases that have an empty value in the domain field.
You can search using the field name or the display name in the query.
Example: If
date
is the field name andDateTime
is the display name of a field, then you can search forDateTime = ""
that will display results including all the date-related fields.
Additional examples
Description | Example |
---|---|
You cannot directly search for tasks, but you can search for the text in the task title, description, and comments. You can also find tasks by searching on the statuses |
|
Search all cases and tasks that contain the word threat in the case title, case summary, case comments, task title, task summary, or task comments. |
|
Search all cases and tasks with text that contains the words |
|
Search all cases assigned to |
|
Search all cases and tasks that are assigned to |
|
Search all cases with text that contains the words |
|
Search all cases assigned to |
|