How do you express the NOT operator within a filter?
For example, find all tickets where a custom field is not null?
I have tried the following formats
?query="field!null"
?query="field%20NOT%20null"
?query="field!:null"
?query="field:!null"
All these formats fail