0

I have an entity called with columns app, id, params, view, timestamp. When I do a select * in GQL it works fine. Screenshot attached below.

enter image description here



However when I try to select only one column I don't see any results. Screenshot attached below.

enter image description here

Also when I try to apply a where clause again I don't see any results. enter image description here

I tried a where clause for another entity and it worked fine. enter image description here



Can you please let me know what I am doing wrong?

Regards, Sathya

Sathya
  • 1,076
  • 1
  • 8
  • 17

1 Answers1

1

It looks like you are trying to querying an entity with unindexed property. An entity with an unindexed property behaves as if the property were not set: queries with a filter or sort order on the unindexed property will never match that entity.

More info : https://developers.google.com/appengine/docs/python/datastore/indexes#Unindexed_Properties

Nijin Narayanan
  • 2,269
  • 2
  • 27
  • 46