How do I get the equivalent result of the following query in NDB?
Entity.all(keys_only=True).fetch(20)
I know you can pass \'keys_only=Tr
\'keys_only=Tr
Found it in the GAE NDB Docs. The answer is Entity.query().fetch(20,keys_only=True).
Entity.query().fetch(20,keys_only=True)