For example, I have a field named ‘IsValid’ and its field type is Boolean
I would like to search for entities that contain that field.
In case: ‘IsValid’ is true or false. My filterSpec will look like:
"filterSpec": {
"filters": [
"DomainTest.IsValid:true"
]
}
OR
"filterSpec": {
"filters": [
"DomainTest.IsValid:false"
]
}
In case: ‘IsValid’ have not set a value. It might be a null value. Will my filterSpec look like?
I tried this filterSpec but it does not work:
"filterSpec": {
"filters": [
"DomainTest.IsValid:null"
]
}