Using Orchestration Query Language
You can use the essential Orchestration Query Language (OQL) keywords and syntax to effectively write queries.
You can monitor the HCL Universal Orchestrator plan environment by using the OQL, which applies to REST API V2 and the Orchestration Monitor of the UI.
Write queries for items in your database and retrieve required results easily and quickly by using the OQL syntax.
An OQL query begins with an expression, which is composed of different conditions, known as queryTerms. A queryTerm is the minimum condition of a OQL construction, for example jobStreamName = test1.
QueryTerms include three main elements: a field, a comparison_operator, and a value. The fields and the values of the query are case-insensitive.
The field must begin with a letter. After the first letter, the field can contain the following characters:
- 0 - 9
- a - z
- A - Z
- _
- -
- .
- Integers, both positive and negative.
- Strings in single quotation marks (').
- Duration, based on ISO 8601 standard. Duration is expressed in
P[n]Y[n]M[n]DT[n]H[n]M[n]Sformat, where[n]replaces the value of each time and date element. For example, to express a duration of 4 hours and 20 seconds, the format to use isPT4H20S. - Instant, based on ISO 8601 standard. Instant is expressed in YYYY-MM-DDThh:mm:ss.milliseconds format. For example, to express the instant for December 1st, 2025 at 11 PM, the format to use is 2025-12-01T23:00:00.000Z.
- Identifier (ID) based on Universally Unique Identifier (UUID) standard.
OQL syntax keywords and comparison operators
The following table details OQL keywords and comparison operators, both of which are essential for constructing effective queries.
| Keywords | Description |
|---|---|
| AND | Returns the results that satisfy all the conditions separated by AND. It is case insensitive. |
| OR | Returns the results that satisfy at least one of the conditions separated by OR. It is case insensitive. |
| ( | Opens a priority expression. |
| ) | Closes a priority expression. |
| [ | Opens a list. |
| ] | Closes a list. |
| = | Returns all the elements equal to the specified element. Numbers, strings, or one of these keywords can follow the keyword: true, false, or null. |
| != | Returns all the elements different from the specified keyword. Numbers, strings, or one of these keywords can follow the keyword: true, false, or null. |
| <= | Returns all the elements that are less than or equal to the specified keyword. Only numbers or strings can follow. |
| >= | Returns all the elements that are greater than or equal to the specified keyword. Only numbers or strings can follow. |
| < | Returns all the elements that are less than the specified keyword. Only numbers or strings can follow. |
| > | Returns all the elements that are greater than the specified keyword. Only numbers or strings can follow. |
| IN | Returns items that the specified list includes. |
| NOT IN | Returns items that the specified list does not include. |
| LIKE | Returns elements that match the specified pattern. The
accepted characters are as follows:
|
| NOT LIKE | Returns elements that do not match the specified pattern. The
accepted characters are as follows:
|
| ORDER BY | Orders the query results according to the specified fields.
You can use the keyword at the end of the construction. By
default, the field is sorted in ascending order. The accepted
values are as follows:
|
| , | Separates values inside a list. |
| . | Specifies a subfield of an item. |
| true | Represents the Boolean value true. |
| false | Represents the Boolean value false. |
| null | Represents the null value. |
OQL syntax fields for workstations
| Field name | Description |
|---|---|
| activeStates | The statuses of the workstation.. Supported values
are:Example: |
| fence | The minimum required priority value set for the tasks for them to be able to run on the
workstation. Example: |
| folder | The name of the folder where the workstation is
saved. Example: |
| folderId | The identifier of the folder of the
workstation. Example: |
| id | The identifier of the
workstation. Example: |
| limit | The number of tasks that can run simultaneously on a
workstation. Example: |
| name | The name of the
workstation. Example: |
| nodeName | The system hostname or IP
address. Example: |
| os | The operating system of the machine associated to the
workstation. Supported values
are:Example: |
| timeZone | The time zone set on the
workstation. Example: |
| tcpPort | The agent TCP port for unencrypted
communication. Example: |
| type | The type of workstation. Supported values are:
Example: |
| version | The version of the
workstation. Example: |
OQL syntax fields for workflows
| Field name | Description |
|---|---|
| aliasJobStreamName | The alias name of the workflow. Example: |
| commonStatus | The external status of the workflow in plan. The supported values are:
Example: |
| dependencies.dependencyStatus | The status of the workflow dependency. Supported values are:
Example: |
| dependencies.jobId | The identifier of the task instance on which the workflow
depends. Example: |
| dependencies.jobName | The name of the task on which the workflow
depends. Example: |
| dependencies.jobStreamFolder |
For dependencies on tasks, the name of the folder of the workflow to which the task belongs. For dependencies on workflows, the name of the folder of the dependent workflow. Example:
|
| dependencies.jobStreamId |
For dependencies on tasks, the id of the workflow to which the task belongs. For dependencies on workflows, the id of the dependent workflow. Example:
|
| dependencies.jobStreamName |
For dependencies on tasks, the name of the workflow to which the task belongs. For dependencies on workflows, the name of the dependent workflow. Example:
|
| dependencies.jobStreamSchedTime |
For dependencies on tasks, the scheduled time of the workflow to which the task belongs. For dependencies on workflows, the scheduled time of the dependent workflow. Example:
|
| dependencies.jobStreamWorkstation |
For dependencies on tasks, the name of the workstation of the workflow to which the task belongs. For dependencies on workflows, the name of the workstation of the dependent workflow. Example:
|
| dependencies.members.dependencyStatus | The status of the member within the join dependency. Supported
values
are:Example: |
| dependencies.members.jobId | The identifier of the task instance of the member within the join
dependency. Example: |
| dependencies.members.jobName | The name of the task of the member within the join
dependency. Example: |
| dependencies.members.jobStreamId |
For join members that depend on tasks, the id of the workflow to which the task belongs. For join members that depend on workflows, the id of the dependent workflow. Example:
|
| dependencies.members.jobStreamName |
For join members that depend on tasks, the name of the workflow to which the task belongs. For join members that depend on workflows, the name of the dependent workflow. Example:
|
| folder | The name of the folder within which the workflow is
saved. Example: |
| folderId | The identifier of the folder within which the workflow is
saved. Example: |
| id | The identifier of the workflow. Example: |
| jobs.dependencies.dependencyStatus | The status of the dependency of a task in a workflow. Supported values are:
Example: |
| jobs.dependencies.jobId | The identifier of the task instance on which a task in the workflow
depends. Example: |
| jobs.dependencies.jobName | The name of the task instance on which a task in the workflow
depends. Example: |
| jobs.dependencies.jobStreamFolder |
For task dependencies on tasks, the name of the folder of the workflow to which the task belongs. For task dependencies on workflows, the name of the folder of the dependent workflow. Example:
|
| jobs.dependencies.jobStreamId |
For task dependencies on tasks, the id of the workflow to which the task belongs. For task dependencies on workflows, the id of the dependent workflow. Example:
|
| jobs.dependencies.jobStreamName |
For task dependencies on tasks, the name of the workflow to which the task belongs. For task dependencies on workflows, the name of the dependent workflow. Example:
|
| jobs.dependencies.jobStreamSchedTime |
For task dependencies on tasks, the scheduled time of the workflow to which the task belongs. For task dependencies on workflows, the scheduled time of the dependent workflow. Example:
|
| jobs.dependencies.jobStreamWorkstation |
For task dependencies on tasks, the name of the workstation of the workflow to which the task belongs. For task dependencies on workflows, the name of the workstation of the dependent workflow. Example:
|
| jobs.dependencies.members.dependencyStatus | The status of the join member of a task in a workflow. Supported values are:
Example: |
| jobs.dependencies.members.jobId | The identifier of the task instance of the member within the task join
dependency. Example: |
| jobs.dependencies.members.jobName | The name of the task of the member within the task join
dependency. Example: |
| jobs.dependencies.members.jobStreamId |
For task join members that depend on tasks, the id of the workflow to which the task belongs. For task join members that depend on workflows, the id of the dependent workflow. Example:
|
| jobs.dependencies.members.jobStreamName |
For task join members that depend on tasks, the name of the workflow to which the task belongs. For task join members that depend on workflows, the name of the dependent workflow. Example:
|
| jobs.jobDefinition.name | The name of the task definition referenced by a task within the workflow. Example: |
| jobs.jobDefinitionRefId | The identifier of the task definition referenced by a task within the workflow. Example: |
| jobs.jobDefinition.recoveryJob | The key of the recovery task of a task definition referenced by a task within the workflow. Example: |
| jobs.jobDefinition.recoveryJobId | The identifier of the recovery task of a task definition referenced by a task within the workflow. Example: |
| jobs.jobDefinition.recoveryOption | The recovery option of a task definition referenced by a task within the workflow. Supported values are STOP or
CONTINUE.Example: |
| jobs.jobDefinition.recoveryRepeatAffinity | The recovery repeat affinity option set on a task definition referenced by a task within the workflow. Supported values are true or
false.Example: |
| jobs.jobDefinition.recoveryRepeatInterval | The recovery repeat interval of a task definition referenced by a task within the workflow. Example: |
| jobs.jobDefinition.recoveryRepeatOccurrences | The recovery repeat occurrences of a task definition referenced by a task within the workflow. Example: |
| jobs.jobDefinition.taskType | The task type of the task definition referenced by a task within the workflow. Example: |
| jobs.jobDefinition.userLogins | The user names that are used to run the task definition referenced by a task within the workflow. Example: |
| jobs.jobDefinition.workstation | The workstation of the task definition referenced by a task within the workflow. Example: |
| jobs.jobOptions.requiresConfirmation | The task is flagged as "Requires confirmation". Supported values are
true or
false.Example: |
| jobs.jobruns.actualWorkstation | The workstation where the task run within the workflow actually
runs. Example: |
| jobs.jobruns.commonStatus | The external status of the task run within the workflow. The supported values are:
Example: |
| jobs.jobruns.compositeStatus.status | The internal status of the task run within the workflow. Supported values are:
Example: |
| jobs.jobruns.compositeStatus.substatus | The substatus of the internal status of the task run within the workflow. Supported values are:
Example: |
| jobs.jobruns.confirmed | The task run within the workflow has been confirmed. Supported values are true or
false.Example: |
| jobs.jobruns.id | The identifier of the task run within the workflow. Example: |
| jobs.jobruns.jobId | The identifier of the task instance referenced by the task run within the workflow. Example: |
| jobs.jobruns.jobNumber | The task number that identifies a task run within the workflow. Example: |
| jobs.jobruns.name | The name of the task run within the workflow. Example: |
| jobs.jobruns.returnCode | The return code of the task run within the workflow. Example: |
| jobs.jobruns.step | The alias name of the task run within the workflow. Example: |
| jobs.jobruns.submittedTime | The time at which the task run within the workflow has been
submitted. Example: |
| jobs.jobruns.timeInfo.actualEndTime | The time at which the task run
ended. Example: |
| jobs.jobruns.timeInfo.actualStartTime | The time at which the task run
started. Example: |
| jobs.jobStreamId | The identifier of the workflow. Example: |
| jobs.jobStreamName | The name of the workflow. Example: |
| jobs.lastRunCommonStatus | The external status of the last run of the task. Supported values are:
Example: |
| jobs.lastRunCompositeStatus.status | The internal status of the last run of the task. Supported values are:
Example: |
| jobs.lastRunCompositeStatus.substatus | The substatus of the internal status of the last run of the
task. Supported values are:
Example: |
| jobs.skipLateAction | The action to take in case of late repeat of a task within the workflow. Supported values
are:Example: |
| jobs.timeRestrictions.deadlineTime | The time within which a task within the workflow should
complete. Example: |
| jobs.timeRestrictions.lateAction | The action to take on a task within the workflow when the deadline is expired. Supported values are
continue or
kill.Example: |
| jobs.timeRestrictions.lateStartAction | The action to take on a task within the workflow when the latestStartTime is
expired. Supported values
are:Example: |
| jobs.timeRestrictions.latestStartTime | The latest time a task within the workflow can
start. Example: |
| jobs.timeRestrictions.maxDuration | The maximum duration set for a task within the workflow. Example: |
| jobs.timeRestrictions.minDuration | The minimum duration set for a task within the workflow. Example: |
| jobs.timeRestrictions.startTime | The start time set for a task within the workflow. Example: |
| jobStreamModelId | The identifier of the workflow
definition. Example: |
| limit | The limit value set for the workflow. Example: |
| name | The name of the workflow. Example: |
| originalJobStreamName | The name of the workflow before any change was
performed. Example |
| pendingEvents.eventPlugin | The event plug-in type of a pending event within the workflow. Example: |
| pendingEvents.eventSource | The key of the event source of a pending event within the
workflow. Example: |
| pendingEvents.eventSourceId | The identifier of the event source of a pending event within the
workflow. Example: |
| pendingEvents.eventType | The type of a pending event within the workflow. Example: |
| pendingEvents.name | The name of a pending event within the workflow. Example: |
| pendingEvents.scope | The scope that describes the purpose of a
pending event within the workflow.Example: |
| priority | The priority value set for the workflow. Example: |
| schedTime | The scheduled time of the workflow. Example: |
| scheduledDate |
The scheduled date of the workflow. Example:
|
| timeInfo.actualEndTime | The time at which the workflow actually
ended. Example: |
| timeInfo.actualStartTime | The time at which the workflow actually
started. Example: |
| timeRestrictions.deadlineTime | The time within which the workflow should
complete. Example: |
| timeRestrictions.lateAction | The action to take when the deadline is expired. Supported values
are continue or
kill.Example: |
| timeRestrictions.lateStartAction | The action to take when the latestStartTime is
expired. Supported values
are:Example: |
| timeRestrictions.latestStartTime | The latest time a workflow can
start. Example: |
| timeRestrictions.startTime | The start time set for a workflow. Example: |
| timeZone | The time zone set on the workstation where a workflow
runs. Example: |
| triggeredBy | The cause of the submission of the workflow, that explains how the workflow instance has entered the plan. Supported values
are:Example: |
| triggeringEvents.eventPlugin | The event plug-in type of an event that has triggered the
submission of the workflow. Example: |
| triggeringEvents.eventSource | The key of the event source of an event that has triggered the
submission of the workflow. Example: |
| triggeringEvents.eventType | The type of an event that has triggered the submission of the
workflow. Example: |
| triggeringEvents.id | The identifier of an event that has triggered the submission of
the workflow. Example: |
| triggeringEvents.name | The name of an event that has triggered the submission of the
workflow. Example: |
| triggeringEvents.receivedTime | The time in which a triggering event has been
received. Example: |
| triggeringEvents.scope | The scope that describes the purpose of an event
that has caused the submission of the workflow.Example: |
| triggerName | The name of an event that has triggered the submission of the
workflow. Example: |
| workstation | The workstation where the workflow
runs. Example: |
| workstationId | The identifier of the workstation on which the workflow
runs. Example: |
OQL syntax fields for tasks
| Field name | Description |
|---|---|
| dependencies.dependencyStatus | The status of the task dependency. Supported values are:
Example: |
| dependencies.jobId | The identifier of the task instance on which the task
depends. Example: |
| dependencies.jobName | The name of the task on which the task
depends. Example: |
| dependencies.jobStreamFolder |
For dependencies on tasks, the name of the folder of the workflow to which the task belongs. For dependencies on workflows, the name of the folder of the dependent workflow. Example:
|
| dependencies.jobStreamId |
For dependencies on tasks, the identifier of the workflow to which the task belongs. For dependencies on workflows, the identifier of the dependent workflow. Example:
|
| dependencies.jobStreamName |
For dependencies on tasks, the name of the workflow to which the task belongs. For dependencies on workflows, the name of the dependent workflow. Example:
|
| dependencies.jobStreamSchedTime |
For dependencies on tasks, the scheduled time of the workflow to which the task belongs. For dependencies on workflows, the scheduled time of the dependent workflow. Example:
|
| dependencies.jobStreamWorkstation |
For dependencies on tasks, the name of the workstation of the workflow to which the task belongs. For dependencies on workflows, the name of the workstation of the dependent workflow. Example:
|
| dependencies.members.dependencyStatus | The status of the member within the join dependency.
Supported values
are:Example: |
| dependencies.members.jobId | The identifier of the task instance of the member within the join
dependency. Example: |
| dependencies.members.jobName | The name of the task of the member within the join
dependency. Example: |
| dependencies.members.jobStreamId |
For join members that depend on tasks, the identifier of the workflow to which the task belongs. For join members that depend on workflows, the identifier of the dependent workflow. Example:
|
| dependencies.members.jobStreamName |
For join members that depend on tasks, the name of the workflow to which the task belongs. For join members that depend on workflows, the name of the dependent workflow. Example:
|
| folder | The name of the folder within which the task is
saved. Example: |
| folderId | The identifier of the folder within which the task is
saved. Example: |
| id | The identifier of the task. Example: |
| jobDefinition.name | The name of the task
definition. Example: |
| jobDefinition.recoveryJob | The name of the recovery task. Example: |
| jobDefinition.recoveryJobId | The identifier of the recovery task. Example: |
| jobDefinition.recoveryOption | The recovery options set for the task definition. Supported values
are:Example: |
| jobDefinition.recoveryRepeatAffinity | The recovery repeat affinity option set on the task definition. Supported values are true or
false.Example: |
| jobDefinition.recoveryRepeatOccurrences | The recovery repeat occurrences of the task
definition. Example: |
| jobDefinition.taskType | The task type of the task
definition. Example: |
| jobDefinition.userLogins | The user names that are used to run the task definition referenced by a task. Example: |
| jobDefinition.workstation | The workstation of the task
definition. Example: |
| jobDefinitionRefId | The identifier of the task
definition. Example: |
| jobOptions.requiresConfirmation | The task is flagged as "Requires confirmation". Supported values are
true or
false.Example: |
| jobruns.actualWorkstation | The workstation where the task run actually
runs. Example: |
| jobruns.commonStatus | The external status of the task run. Supported values are:
Example: |
| jobruns.compositeStatus.status | The internal status of the task run. Supported values are:
Example: |
| jobruns.compositeStatus.substatus | The substatus of the internal status of the task run. Supported values are:
Example: |
| jobruns.confirmed | The task run has been confirmed. Supported values are
true or
false.Example: |
| jobruns.id | The identifier of the task
run. Example: |
| jobruns.jobId | The identifier of the task instance referenced by the task
run. Example: |
| jobruns.jobNumber | The task number that identifies the task
run. Example: |
| jobruns.name | The name of the task
run. Example: |
| jobruns.returnCode | The return code of the task
run. Example: |
| jobruns.step | The alias name of the task
run. Example: |
| jobruns.submittedTime | The time at which the task run has been
submitted. Example: |
| jobruns.timeInfo.actualEndTime | The time at which the task run
ended. Example: |
| jobruns.timeInfo.actualStartTime | The time at which the task run
started. Example: |
| jobStreamId | The identifier of the workflow. Example: |
| jobStreamName | The name of the workflow. Example: |
| lastRunCommonStatus | The external status of the last run of the task. Supported values are:
Example: |
| lastRunCompositeStatus.status | The internal status of the last run of the task. Supported values are:
Example: |
| lastRunCompositeStatus.substatus | The substatus of the internal status of the last run of the
task. Supported values are:
Example: |
| name | The name of the task. Example: |
| priority | The priority value set for the task. Example: |
| schedTime | The scheduled time of the task. Example: |
| skipLateAction | The action to take in case of late repeat. Supported values
are:Example: |
| timeRestrictions.deadlineTime | The time within which the task should
complete. Example: |
| timeRestrictions.lateAction | The action to take on the task when the deadline is expired. Supported values are
continue or
kill.Example: |
| timeRestrictions.lateStartAction | The action to take when the latestStartTime
is expired. Supported values
are:Example: |
| timeRestrictions.latestStartTime | The latest time a task can
start. Example: |
| timeRestrictions.maxDuration | The maximum duration set for the task. Example: |
| timeRestrictions.minDuration | The minimum duration set for the task. Example: |
| timeRestrictions.startTime | The start time set for the task. Example: |
| timeZone | The time zone set on the workstation where the task
runs. Example: |
| workstation | The workstation where the task
runs. Example: |
| workstationId | The ID of the workstation on which the task
runs. Example: |
OQL syntax fields for resources
| Field name | Description |
|---|---|
| folder | The folder of the
resource. Example: |
| folderId | The identifier of the folder of the
resource. Example: |
| id | The id of the
resource. Example: |
| name | The name of the
resource. Example: |
| workstation | The workstation of the
resource. Example: |
| workstationId | The identifier of the workstation of the resource.
Example: |
OQL syntax fields for event sources
| Field name | Description |
|---|---|
| actualStatus | The actual status of the event source. Supported values
are:Example: |
| eventPlugin | The type of the event plug-in of the event
source. Example: |
| folder | The folder of the event
source. Example: |
| folderId | The identifier of the folder of the event
source. Example: |
| id | The id of the event
source. Example: |
| name | The name of the event
source. Example: |
| status | The desired status of the event source. Supported values
are:Example: |
| type | The event source type related to an event
plug-in. Example:
|
Examples
- Workstation
-
- The following example shows a query that retrieves all the
workstations in plan that either are linked or their workstation
type is
cloud:
activeStates IN ['LINKED'] OR type IN ['CLOUD'] - The example below shows a query that retrieves all the
workstations that have all the following characteristics:
- They have a name that contains the sequence of letters
AGT - They are either agent or cloud type workstations
- They are in
LINKEDstate - They are contained in a folder whose name ends with
letter
AThe results of the query must be ordered by name, sorted in descending order:
name LIKE '@AGT@' AND type IN ['AGENT','CLOUD'] AND activeStates IN ['LINKED'] AND folder LIKE '/@A' ORDER BY name DESC - They have a name that contains the sequence of letters
- The following example shows a query that retrieves all the
workstations in plan that either are linked or their workstation
type is
cloud:
- Workflow
-
- The example below shows a query that retrieves either:
- Workflows whose name does not contain the word
JSwithin and whose limit is greater than 1 and less or equal to 3Or
- Workflows whose name contains the letter
Aand that has a priority greater than 9 and less or equal to 100
(name NOT LIKE '@JS@' AND (limit > 1 AND limit <= 3)) OR (name LIKE '@A@' AND (priority > 9 AND priority <= 100)) - Workflows whose name does not contain the word
- The following example shows a query that retrieves either:
- Workflows that are in WAITING and
READY status and that have a
schedule time between March, 1st 2025 at 12 AM and
April, 10th 2025 at 11:59 PM
Or
- Workflows that are in ERROR and BLOCKED status and that have a schedule time between January, 1st 2025 at 12 AM and April, 25th 2025 at 11:59 PM
(commonStatus IN ['WAITING','READY'] AND (schedTime >= '2025-03-01T00:00:00.000Z' AND schedTime <= '2025-04-10T23:59:59.000Z')) OR (commonStatus IN ['ERROR','BLOCKED'] AND (schedTime >= '2025-01-01T00:00:00.000Z' AND schedTime <= '2025-04-25T23:59:59.000Z')) - Workflows that are in WAITING and
READY status and that have a
schedule time between March, 1st 2025 at 12 AM and
April, 10th 2025 at 11:59 PM
- The following example shows a query that performs a basic
search. Using regular plan filters, the query would correspond
to
/WSFOLDER/WS#/JSFOLDER/JSNAME:name = 'JSNAME' AND workstation = '/WSFOLDER/WS' AND folder ='/JSFOLDER' - The below query retrieves all workflow whose status is either
SUCC,ABEND, orSTUCK, and whose start time is prior to 2025/04/27 11:15:00:000 UTC:compositeStatus.status IN ['SUCC','ABEND','STUCK'] AND timeInfo.actualStartTime < '2025-04-27T11:15:00.000Z' - The following example shows a query that retrieves all the
workflows that either:
- Have priority value set to 101 and are in
RUNNING
status
Or
- Are on folder and on a workstation whose name starts
with
/WS
(priority = 101 AND commonStatus = 'RUNNING') OR (workstation LIKE '/WS@' AND folder = '/') - Have priority value set to 101 and are in
RUNNING
status
- The example below shows a query that retrieves either:
- Task
-
- The following example shows a query that retrieves all tasks that:
- Have a name that starts with the letter
A - Are part of the workflow named
TASKS
/WORKSTATION, or that belong to workflow scheduled on/WORKSTATION:name LIKE 'A@' AND (workstation = '/WORKSTATION' OR jobStreamWorkstation = '/WORKSTATION') AND jobStreamName = 'TASKS' - Have a name that starts with the letter
- The following query retrieves all tasks that either are not in
FAIL,ABEND, andHOLD, or have been cancelled:jobruns.compositeStatus.status NOT IN ['FAIL','ABEND','HOLD'] OR jobruns.compositeStatus.canceled = true - The below query retrieves all tasks that are on a workstation with a name similar to
WKS_rome, excluding those that have completed with eitherSUCCESSFULorERRORstatus:workstation LIKE '@WKS_rome@' AND jobruns.commonStatus NOT IN ['SUCCESSFUL','ERROR']
- The following example shows a query that retrieves all tasks that:
- Resources
-
- The following example shows a query that retrieves all the
resources that:
- Have a name that contains the letters
RES - Are saved in a folder named
/FOLDER1 - Are on a workstation different from
AGT_ROME
(name LIKE '@RES@' AND folder = '/FOLDER1' AND workstation != 'AGT_ROME') ORDER BY name DESC - Have a name that contains the letters
- The following example shows a query that retrieves all the
resources that:
- Event sources
-
- The following example shows a query that retrieves all the event
sources that are actually connected and:
- Have a name that starts with 'S' and are of Webhook
Generic type
OR
- Have a name that starts with 'G' and are of AWS SQS type:
actualStatus IN ['CONNECTED'] AND (name LIKE 'S@' AND eventPlugin = 'Webhook' AND type = 'Generic') OR (name LIKE 'G@' AND eventPlugin = 'AWS' AND type = 'AWS SQS') - Have a name that starts with 'S' and are of Webhook
Generic type
- The following example shows a query that retrieves all the event
sources that are actually connected and: