Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What's the equivalent of Entity.all(keys_only=True).fetch(20) in NDB?

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=True' to the iter() method. But what if I want to perform a keys only fetch, how do I do that in NDB?

like image 717
Albert Avatar asked Apr 18 '12 06:04

Albert


1 Answers

Found it in the GAE NDB Docs. The answer is Entity.query().fetch(20,keys_only=True).

like image 151
Albert Avatar answered Oct 12 '22 23:10

Albert