For some reason one of my composite index with google datastore is not working.
I am getting zero results with the following query:
SELECT * FROM `Foobar` WHERE `ver` = 20180814 AND `level` = 1
However the index is created (though showing zero size even though it has been created couple of days ago):
I double checked that the fields are both integers and I am also getting zero results on the local sdk.
index.yaml:
indexes:
- kind: Foobar
properties:
- name: ver
- name: level
direction: desc

An entity is included in the index only if it has an indexed value set for every property used in the index;- Dan Cornilescu