How to construct a GQL query using server side admin datastore viewer, a one that filters on a reference property?
SELECT * from Model where reference_property = <what goes here>
How to construct a GQL query using server side admin datastore viewer, a one that filters on a reference property?
SELECT * from Model where reference_property = <what goes here>
See the GQL reference. You can use KEY('encoded key')
or KEY('kind', 'name or id', ...)
.