By continuing to use our website, you agree with our use of cookies in accordance with our Cookie Policy. You can reject cookies by changing your browser settings.
This is an archive version of the document. To get the most up-to-date information, see the current version.
Grouping Operators
The query string may contain conditions grouped using the grouping operators “(“ and “)”. The grouping operators help the client to form complex queries that contain a number of “field-value” pairs.
For example, using the query below, the client can get a list of jobs that meets the following criteria:
Backup jobs with scheduling options enabled
Replication jobs with scheduling options disabled
Request:
GET http://localhost:9399/api/query?type=job&filter=(jobtype==replica;scheduleconfigured==false),(jobtype==backup;scheduleconfigured==true)