I would like to have get_multi
return None
for keys with invalid ids.
class Entity(ndb.Model):
pass
ids = [0, 1]
rows = ndb.get_multi([Key(Entity, id) for id in ids])
Actual result
BadRequestError('missing key id/name')
Desired result
[None, <Entity with id 1>]
The reason I'm not calling filter
on ids
is that I want indices in ids
to correspond to indices in rows
.
Since
get_multi
is just a helper function, my best solution so far is to copy the code and only run the query ifid > 0
.