Search
Search works across all DevRev apps, offering seamless navigation and access to issues, tickets, articles, customers, and more. It also allows you to search through timeline comments related to these items. By using search queries and commands, you can refine your search and achieve more precise results.
Key actions in the search interface include:
-
Users can toggle between standard and expanded views for an enhanced search experience.
-
Clicking on a comment directs users to the specific comment within the relevant object panel.
-
Search results display details such as the comment author, timestamp, and comment text.
-
The interface shows up to two relevant comments per object.
To start a search, press Cmd + K on Mac or Ctrl + K on Windows, or click Search at the top of the left navigation bar.

1 [operator]* [field]* [term/phrase]*
The above query specifies the following:
- Filtering
- Full-text search terms/phrases
Filtering is denoted by the query's [operator]* [field]*, which represents a logical AND of all operators (if specified). This is used to reduce the list of possible objects that can be returned in search results.
Full-text search terms/phrases are denoted by [term/phrase]* and are used to do full-text searches on object text fields.
Example: state: open, closed (field value)
Operators
Operators are used to filter the search results. The following table shows the syntax of each operator along with examples.
Fields
Fields can be used along with operators to filter the search results further. The following table shows types of fields, syntax and it's examples.
Integrating search with customization
DevRev's customization framework allows you to extend core objects with custom fields and create custom object types. These customizations are fully searchable using the same search syntax as standard fields.
Search over custom fields
Custom fields use the standard field search syntax and support all field types including text, numeric, boolean, date, and array fields. Custom fields that are specific to a subtype require the subtype filter to be included in your search query.
Syntax:
1 subtype:<subtype_name> <custom_field_name>:<value>
** For examples:**
Search for tickets related to access issues with tenant field escalated:
tnt__escalated
access issues
Search for bugs related to access issues with subtype field customer_impact:
subtype
ctype__customer_impact access issues
Search across multiple subtypes for tickets related to access issues:
subtype
,Events access issues
Limitations:
- Subtype specific field filters are not supported while searching across multiple subtypes.
Learn more about creating and managing custom fields in the Object customization guide.
Search over custom objects
Custom fields use the standard field search syntax and support all field types including text, numeric, boolean, date, and array fields. You should add the leaf_type filter while searching over custom objects.
Search for book custom objects related to AI agents:
subtype
AI agents
Search for book custom objects related to AI agents with tenant field author:
subtype
author:"Chip Huyen" AI agents
For detailed information on creating custom objects, see the Custom objects guide.