NQL logical operators

OperatorDefinitionExamples

in

Is a value in the list

where name in ["ABC", "def"]

where count in [10, 20, 30]

!in

Is not a value in the list

where name !in ["ABC", "def"]

where count !in [10, 20, 30]

Last updated