Boolean Operators for Remediation Tokens
The Qualys Query Language (QQL) supports the following logical or boolean query operators. Use these operators in your queries to narrow down or broaden your search.
Narrow down your search by using the 'and' operator in your Boolean query. The result contains all the token values that you provide in your query.
Example
job.id:7012 and job.status:Executing
The job having the ID 7012 and also having the status as Executing is returned in the result.
Broaden your search by using the 'or' operator in your Boolean query. The result contains any of the token values that you provide in your query.
Example
Show jobs that are timed out or are scheduled:
job.status:Timeout or job.schedule.type:Scheduled
Narrow down your search by using the 'not' operator in your Boolean query. The result contains all the other values except the one that you specify after 'not' in your query.
Example
Show jobs that are not scheduled:
not job.schedule.type:Scheduled
Related Topics
Search Tokens for Remediation Jobs
Search Tokens for Remediation Controls