I have this index
CREATE INDEX
idx_longitude_missingONtest((meta().id)) WHERE ((type= “Property”) and (summary.longitude) is missing))
And my query is
select meta().id FROM
testWHEREtype= “Property” AND summary.longitude is missing
Can anyone tell me what’s wrong? Why does the query refuses to use the index?
Thanks,