GlideQuery - Scoped, Global
-
- UpdatedAug 1, 2024
- 22 minutes to read
- Xanadu
- API reference
The GlideQuery script include is an alternative to the GlideRecord API for performing CRUD operations on record data from server-side scripts.
The GlideQuery script include lets you:
- Use standard JavaScript objects and types for queries and results.
- Quickly diagnose query errors with additional checks and clear error messages.
- Simplify your code by avoiding boiler-plate query patterns.
- Avoid common performance issues without needing deeper knowledge of the GlideRecord.
Implementation
This script include works together with the Stream and Optional APIs in a builder pattern where the method calls chain together, each method building on the returned result of the previous method. Use methods to define the attributes of the query. The methods do not execute until you call a terminal method, a method that returns a query result, allowing you to define the requirements of the query before executing it.
If the query returns a single record, the system wraps the result in an Optional object. If the query returns a stream of records, the system wraps the result in a Stream object. These objects let you manage the result using a set of methods in each API.
For example, this script performs a query on the Task table, groups the records by priority, and returns each priority that has total reassignments greater than four.
Error handling
The GlideQuery script include throws an error when your query has a problem and includes a clear explanation to help guide you. This script include checks for:
- Invalid fields
- Invalid value types for a field
- Invalid values for choice fields
- Invalid query operators
For example, the following code sample would throw an error because the queried field does not exist in the table.
This code sample would throw an error because the data type of one of the arguments is incorrect.
Reuse
Because GlideQuery objects are immutable, you can reuse them later in other parts of your code. For example, this script creates a query and then uses the GlideQuery object later to generate a report.
Limitations
The GlideQuery script include does not support:
- Reading or writing to tables that do not allow access from other scopes.
- Reading encoded queries.
- GlideDate or GlideDateTime objects, which are read as JavaScript strings.
- FX currency fields.
- Updating journal field types.
- Queries with ambiguous conditional logic. For example, the following query is unclear
because the system does not know whether to execute
(active = true AND name != null) OR last_name = Luddy
oractive = true AND (name != null OR last_name = Luddy)
.See the where() method to understand how to nest a child query instead.
Intermediate and terminal methods in GlideQuery
The GlideQuery script include uses two categories of methods: intermediate and terminal. Intermediate methods are those methods that return a Stream, an API used for interacting with a stream of items like records, allowing a fluent style of syntax where calls are chained together. Terminal methods are those methods that do not return a stream and therefore stop the chain of Stream method calls.
In the GlideQuery script include, methods such as where(), orderBy(), and disableWorkflow() are intermediate methods that return a new GlideQuery object. Similarly, the GlideQuery script include's most popular terminal methods, select() and selectOne(), are terminal methods. These methods are called when GlideQuery is done being configured and is ready to start processing records. The differences between these two method types is important to keep in mind when configuring calls to the GlideQuery script include according to your specific use cases. For more information about intermediate and terminal methods, see the article GlideQuery - Stream Processing Part 1.
The following methods are classified as intermediate:
- aggregate(String aggregateType, String field)
- disableAutoSysFields()
- disableWorkflow()
- forceUpdate()
- groupBy(String fields)
- having(String aggregateType, String field, String operator, Number value)
- limit(Number limit)
- orderBy(String fields)
- orderByDesc(String fieldOrAggregate, String field)
- orWhere(String fieldOrQuery, String operator, Any value)
- orWhereNotNull(String field)
- orWhereNull(String field)
- where(String fieldOrQuery, String operator, Any value)
- whereNotNull(String field)
- whereNull(String field)
- withAcls()
The following methods are classified as terminal:
- avg(String field)
- count()
- deleteMultiple()
- get(String key, Array selectedFields)
- getBy(Object keyValues, Array selectedFields)
- insert(Object keyValues, Object selectedFields)
- insertOrUpdate(Object changes, Object selectedFields)
- max(String field)
- min(String field)
- select(String fields)
- selectOne(String fields)
- sum(String field)
- toGlideRecord()
- update(Object changes, Object selectedFields)
- updateMultiple(Object changes)
GlideQuery - GlideQuery(String table)
Instantiates a GlideQuery object used to build and execute record queries.
Name | Type | Description |
---|---|---|
table | String | Table to query. |
Type | Description |
---|---|
None |
Example
This example instantiates a query of the User table.
GlideQuery - aggregate(String aggregateType, String field)
Aggregates a field using a specified aggregation function.
Use this method to build queries that aggregate against multiple fields or use multiple aggregate functions, or if you must use the groupBy() method. If you only want to aggregate against one field with one function, and you don't need to use groupBy(), then use one of these methods instead:
- avg()
- min()
- max()
- count()
Name | Type | Description |
---|---|---|
aggregateType | String | The type of aggregation function to perform. Options include:
|
field | String | Field on which to perform the operation. |
Type | Description |
---|---|
GlideQuery | The query object being built. |
Example
GlideQuery - avg(String field)
Returns the aggregate average of a given numeric field.
- Integer
- Long
- Floating point number
- Double
- Currency
Name | Type | Description |
---|---|---|
field | String | Field on which to perform the operation. |
Type | Description |
---|---|
Optional | Object that contains the aggregate average of the given field. |
Example
This example shows how to return the average number of faults in the cmdb_ci table.
Output:
GlideQuery - count()
Returns the number of records that match the query.
Name | Type | Description |
---|---|---|
None |
Type | Description |
---|---|
Number | Number of records that match the query. |
Example
This example returns the number of active records in the User table.
Output:
GlideQuery - deleteMultiple()
Deletes all records in the table specified by the preceding Where clauses.
Name | Type | Description |
---|---|---|
None |
Type | Description |
---|---|
None |
Example
This example deletes all active records in the User table where the last name is Jeter.
GlideQuery - disableAutoSysFields()
Disables updating system fields, or fields with a name that starts with the
sys
prefix, such as sys_created_on, sys_updated_on, and sys_mod_count. Only
applies to the specified query.
Name | Type | Description |
---|---|---|
None |
Type | Description |
---|---|
GlideQuery | The query object being built. |
Example
This example adds a record to the task table, but does not set system fields. Without calling this method, the below example would update sys_updated_on, sys_mod_count, and so on.
GlideQuery - disableWorkflow()
Disables any business rules, flows, workflows, or audit records that would run or be created as the result of the query.
Name | Type | Description |
---|---|---|
None |
Type | Description |
---|---|
GlideQuery | The query object being built. |
Example
This example updates multiple records in the Task table without triggering any automatic business processes.
GlideQuery - forceUpdate()
Forces a database update even when no record changes are made. For example, you can use this method to force a business rule to execute.
Name | Type | Description |
---|---|---|
None |
Type | Description |
---|---|
GlideQuery | The query object being built. |
Example
This example force updates Task records with a certain sys_id.
GlideQuery - get(String key, Array selectedFields)
Returns a single record from the query.
Name | Type | Description |
---|---|---|
key | String | Sys_id of the record to return. |
selectedFields | Array | Optional. Additional fields to return in the result. Default: The system always returns the sys_id. |
Type | Description |
---|---|
Optional | Object used to interact with a single record. |
Example
Example that returns a record based on sys_id.
Output:
GlideQuery - getBy(Object keyValues, Array selectedFields)
Returns an Optional object containing a single record based on a set of name-value pairs to query by. Assumes the '=' operator for each name-value pair.
Name | Type | Description |
---|---|---|
keyValues | Object | Object where the keys are the name of the fields, and the values are the values to query for. |
selectedFields | Array | Optional. Additional fields to return in the result. Default: The system always returns the sys_id. |
Type | Description |
---|---|
Optional | Object used to interact with a single record. |
Example
Example that returns a record by querying for a user's name.
Output:
GlideQuery - groupBy(String fields)
Groups the query results by a designated field or fields.
You must use this method with the aggregate() method.
Name | Type | Description |
---|---|---|
fields | String or Array of Strings | Field or fields to group the results by. |
Type | Description |
---|---|
GlideQuery | The query object being built. |
Example
GlideQuery - having(String aggregateType, String field, String operator, Number value)
Filters aggregate groups so that you can display only groups of results that match a specified condition.
Must use this method with the aggregate() or groupBy() methods.
Type | Description |
---|---|
GlideQuery | The query object being built. |
Example
GlideQuery - insert(Object keyValues, Object selectedFields)
Inserts a record and returns an Optional object containing the record.
Name | Type | Description |
---|---|---|
keyValues | Object | Object containing name-value pairs to insert into the record. Unspecified fields will be null. |
selectedFields | Array | Optional. Additional fields to return in the result. Default: The system always returns the sys_id. |
Type | Description |
---|---|
Optional | Object used to interact with a single record. |
Example
This example shows how to insert a record based on a user's first and last name.
Output:
GlideQuery - insertOrUpdate(Object changes, Object selectedFields)
Updates an existing record, or inserts a new record if one does not already exist.
Name | Type | Description |
---|---|---|
changes | Object | Object containing name-value pairs to update or insert into the record. |
selectedFields | Array | Optional. Additional fields to return in the result. Default: The system always returns the sys_id. |
Type | Description |
---|---|
Optional | Object used to interact with a single record. |
Example
This example shows how to insert a new record that does not already exist in the system.
Example
This example shows how to update an existing record.
GlideQuery - limit(Number limit)
Limits the number of records returned in a query.
Name | Type | Description |
---|---|---|
limit | Number | Number of records to return. |
Type | Description |
---|---|
GlideQuery | The query object being built. |
Example
This example shows how to limit the results returned to five records.
Output:
GlideQuery - max(String field)
Returns the aggregate maximum of a given field.
Name | Type | Description |
---|---|---|
field | String | Field on which to perform the operation. |
Type | Description |
---|---|
Optional | Object used to interact with a single record. |
Example
This example shows how to return the maximum value, or highest alphanumeric value, of a given field.
Output:
GlideQuery - min(String field)
Returns the aggregate minimum of a given field.
Name | Type | Description |
---|---|---|
field | String | Field on which to perform the operation. |
Type | Description |
---|---|
Optional | Object used to interact with a single record. |
Example
This example shows how to return the minimum value, or lowest alphanumeric value, of a given field.
Output:
GlideQuery - orderBy(String fields)
Orders the returned result in ascending order by a given field.
Name | Type | Description |
---|---|---|
fields | String | Comma-delimited fields to order the result by in ascending order. |
Type | Description |
---|---|
GlideQuery | The query object being built. |
Example
This example shows how to order results in ascending order by record number.
Output:
GlideQuery - orderByDesc(String fieldOrAggregate, String field)
Orders the returned result in descending order by a given field.
Name | Type | Description |
---|---|---|
fieldOrAggregate | String | If the query does not use the aggregate() method, pass the
field to order the results by. If the query uses the aggregate() method, pass the type of aggregation function to perform. Options include:
|
field | String | Optional. Field to order the result by in descending order. Required for queries using the aggregate() method. |
Type | Description |
---|---|
GlideQuery | The query object being built. |
Example
This example shows how to order the result in descending order by number.
Output:
Example
This example shows how to order an aggregate result by the sum of child incidents.
Output:
GlideQuery - orWhere(String fieldOrQuery, String operator, Any value)
Adds an OR clause to a query that returns values based on a given condition.
Name | Type | Description |
---|---|---|
fieldOrQuery | String or GlideQuery | Field or another GlideQuery object used in the where clause. If passing a
field, you can dot-walk to a desired value. For example,
'company.name' . |
operator | String | Optional. Operator used in the OR clause. If you do not pass an argument, the system uses the = operator. You do not need to include a placeholder value. |
value | Any | Value used in the OR clause. |
Type | Description |
---|---|
GlideQuery | The query object being built. |
Example
This example shows how to add a simple OR clause to a query.
Output:
Example
This example shows how to add an orWhere
clause that contains a separate query.
Output:
GlideQuery - orWhereNotNull(String field)
Adds an OR clause that returns records that do not contain a null value in a given field.
Name | Type | Description |
---|---|---|
field | String | Field used in the query. |
Type | Description |
---|---|
GlideQuery | The query object being built. |
Example
This example shows how to query the User table and return results where the first or last names are not null.
Output:
GlideQuery - orWhereNull(String field)
Adds an OR clause to a query that returns records that contain a null value in a given field.
Name | Type | Description |
---|---|---|
field | String | Field used in the query. |
Type | Description |
---|---|
GlideQuery | The query object being built. |
Example
This example shows how to query the User table and return records where the first or last names are null.
Output:
GlideQuery - parse(String table, String encoded_query )
Adds an encoded query to a new GlideQuery query.
This method does not support all GlideRecord encoded query operators. The following operators are currently supported:
= |
ANYTHING |
GT_FIELD |
NOT IN |
!= |
BETWEEN |
GT_OR_EQUALS_FIELD |
NOT LIKE |
> |
CONTAINS |
IN |
NSAMEAS |
>= |
DOES NOT CONTAIN |
INSTANCEOF |
ON |
< |
DYNAMIC |
LIKE |
SAMEAS |
<= |
EMPTYSTRING |
LT_FIELD |
STARTSWITH |
ENDSWITH |
LT_OR_EQUALS_FIELD |
Name | Type | Description |
---|---|---|
table | String | Table to query, such as task or incident. |
encoded_query | String | Encoded query to apply to the records in the specified table. |
Type | Description |
---|---|
GlideQuery | GlideQuery object containing the encoded query. |
Example
The following example creates a GlideQuery object that contains all active records in the task table, ordered by the priority field, returned as a Stream object that contains just the description field.
GlideQuery - select(String fields)
Returns the results of the query as a Stream object containing the specified fields.
You can append a flag to a field name to return the field's metadata
instead of the field's value. For example, using the field name
company$DISPLAY
returns the display value of a company field. Possible
flags include:
DISPLAY
: Returns the display value of a field.CURRENCY_CODE
: Returns the currency code of a currency field. For example,USD
.CURRENCY_DISPLAY
: Returns the currency display value of a currency field. For example,¥123.45
.CURRENCY_STRING
: Returns the currency string of a currency field. For example,JPY;123.45
.
Name | Type | Description |
---|---|---|
fields | String or Array of Strings | Optional. Fields to display in the result. You can provide any number of
fields as arguments, dot-walk to a desired value, or use a flag. For example:
Default: The system always returns the sys_id. |
or
Type | Description |
---|---|
Stream | Object used to interact with a stream of items such as records. |
Example
This example shows how to select fields to display from the query and use
$DISPLAY
to return the display value of a field.
Output:
GlideQuery - selectOne(String fields)
Returns the result of the query as an Optional object containing specified fields.
Use this method when returning a single record, or to test if a record exists. If returning multiple records, use the select() method to return a Stream object.
You can append a flag to a field name to return the field's metadata
instead of the field's value. For example, using the field name
company$DISPLAY
returns the display value of a company field. Possible
flags include:
DISPLAY
: Returns the display value of a field.CURRENCY_CODE
: Returns the currency code of a currency field. For example,USD
.CURRENCY_DISPLAY
: Returns the currency display value of a currency field. For example,¥123.45
.CURRENCY_STRING
: Returns the currency string of a currency field. For example,JPY;123.45
.
Name | Type | Description |
---|---|---|
fields | String or Array of Strings | Optional. Fields to display in the result. You can provide any number of fields
as arguments, dot-walk to a desired value, or use a flag. For example:
Default: The system always returns the sys_id. |
or
Type | Description |
---|---|
Optional | Object used to interact with a single record. |
Example
This example shows how to return a single record as an Optional object and display specified fields.
Output:
GlideQuery - sum(String field)
Returns the aggregate sum of a given numeric field.
- Integer
- Long
- Floating point number
- Double
- Currency
Name | Type | Description |
---|---|---|
field | String | Field on which to perform the operation. |
Type | Description |
---|---|
Optional | Object used to interact with a single record. |
Example
This example shows how to return the sum of all faults in the cmdb_ci table.
Output:
GlideQuery - toGlideRecord()
Returns a GlideRecord object that represents the current query. Returns a GlideAggregrate object if the query uses the GlideQuery.aggregate() method.
After transforming the query, use the query() method in the GlideRecord or GlideAggregate classes to query the database.
Name | Type | Description |
---|---|---|
None |
Type | Description |
---|---|
GlideRecord or GlideAggregate | GlideRecord object that contains the query. If you used the GlideQuery.aggregate() method, then the method returns a GlideAggregrate object instead. |
Example
This example shows how to transform a GlideQuery object into a GlideRecord.
GlideQuery - update(Object changes, Object selectedFields)
Updates an existing record that matches the defined conditions.
Before using this method, call the where() method to specify the conditions that a record must meet to be updated.
Name | Type | Description |
---|---|---|
changes | Object | Object containing name-value pairs to update in the record. Names must match fields in the table. |
selectedFields | Array | Optional. Additional fields to return in the result. Default: The system always returns the sys_id. |
Type | Description |
---|---|
Optional | Object used to interact with a single record. |
Example
This example shows how to update a record with new values.
GlideQuery - updateMultiple(Object changes)
Updates all existing records that match the defined conditions. Returns the number of records updated.
Before using this method, call the where() method to specify the conditions that the records must meet to be updated.
Name | Type | Description |
---|---|---|
changes | Object | Object containing name-value pairs to update in the record. Names must match fields in the table. |
Type | Description |
---|---|
Object | Object containing the number of records that were updated. Keys include:
|
Example
This example shows how to update any records that fit a defined criteria.
Output:
GlideQuery - where(String fieldOrQuery, String operator, Any value)
Adds a Where clause to the query that returns values based on a given condition.
Name | Type | Description |
---|---|---|
fieldOrQuery | String or GlideQuery | Field or another GlideQuery object used in the where clause. If passing a
field, you can dot-walk to a desired value. For example,
'company.name' . |
operator | String | Optional. Operator used in the where clause. If you do not pass an argument, the system uses the = operator. |
value | Any | Value used in the where clause. |
Type | Description |
---|---|
GlideQuery | The query object being built. |
Example
This example shows how to return records from the User table where active is true and the user's last login is after a specified date.
Output:
Example
This example shows how to return records from the Incident table where active is true and the priority or severity is 1.
Output:
GlideQuery - whereNotNull(String field)
Returns records that do not contain a null value in a given field.
Name | Type | Description |
---|---|---|
field | String | Field used in the query. |
Type | Description |
---|---|
GlideQuery | The query object being built. |
Example
This example shows how to query the User table and return results where the first_name field is not null.
Output:
GlideQuery - whereNull(String field)
Returns records that contain a null value in a given field.
Name | Type | Description |
---|---|---|
field | String | Field used in the query. |
Type | Description |
---|---|
GlideQuery | The query object being built. |
Example
This example shows how to query the User table and return records where the first or last names are null.
Output:
GlideQuery - withAcls()
Executes the query using the GlideRecordSecure API to securely query the database while honoring ACLs.
Name | Type | Description |
---|---|---|
None |
Type | Description |
---|---|
GlideQuery | The query object being built. |
Example
This example shows how to execute a secure query using ACLs.
Output:
On this page
- Implementation
- Error handling
- Reuse
- Limitations
- Intermediate and terminal methods in GlideQuery
- GlideQuery - GlideQuery(String table)
- GlideQuery - aggregate(String aggregateType, String field)
- GlideQuery - avg(String field)
- GlideQuery - count()
- GlideQuery - deleteMultiple()
- GlideQuery - disableAutoSysFields()
- GlideQuery - disableWorkflow()
- GlideQuery - forceUpdate()
- GlideQuery - get(String key, Array selectedFields)
- GlideQuery - getBy(Object keyValues, Array selectedFields)
- GlideQuery - groupBy(String fields)
- GlideQuery - having(String aggregateType, String field, String operator, Number
value)
- GlideQuery - insert(Object keyValues, Object selectedFields)
- GlideQuery - insertOrUpdate(Object changes, Object selectedFields)
- GlideQuery - limit(Number limit)
- GlideQuery - max(String field)
- GlideQuery - min(String field)
- GlideQuery - orderBy(String fields)
- GlideQuery - orderByDesc(String fieldOrAggregate, String field)
- GlideQuery - orWhere(String fieldOrQuery, String operator, Any value)
- GlideQuery - orWhereNotNull(String field)
- GlideQuery - orWhereNull(String field)
- GlideQuery - parse(String table, String encoded_query )
- GlideQuery - select(String fields)
- GlideQuery - selectOne(String fields)
- GlideQuery - sum(String field)
- GlideQuery - toGlideRecord()
- GlideQuery - update(Object changes, Object selectedFields)
- GlideQuery - updateMultiple(Object changes)
- GlideQuery - where(String fieldOrQuery, String operator, Any value)
- GlideQuery - whereNotNull(String field)
- GlideQuery - whereNull(String field)
- GlideQuery - withAcls()