How would I set up a filter that looked for null values in a numberic field?
filter currently looks like this:
'$and': [
{ 'CompanyId': null },
{ 'IsActive': true }
]
If I look for a value in CompanyId it works, but trying find items with null values (or "Not set") finds nothing.