chukwuka mark
chukwuka mark

Reputation: 164

Writing query with where clause in Python NDB

So I have a query that looks like

 data = ndb.Key('Account', int(entity_id)).get()

is it possible to add a where clause and filter by other fields

Upvotes: 0

Views: 59

Answers (1)

chukwuka mark
chukwuka mark

Reputation: 164

For that, you need to use ndb.query() – @gaefan comment

Upvotes: 0

Related Questions