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