I have a list of keys for entites I want to read.
I can't find a way to read them in a single transaction
Is there a way to do something like this -
var query = datastore.createQuery('Task').filter('someProp', 'in', ['val1', 'val2'])
If someone knows about a specific solution for filtering according to multiple keys it will also work for me.
Thanks