I can't understand if this is possible or not.
I need to retrieve all the entities of kind "A", children of a list of entities of kind "B".
So there are multiple children "A" for each entity "B".
This would be easy: i get B-list, the list of entities of kind "B" that i need and for each, i get the list of childrens.
Now, i could sort them after the query, merging them in a single list even if it's not a good practice. My biggest problem is that i don't know how to use a cursor because there are multiple queries.
Then i think i need something that looks like
A.query(ancestor in B-list).fetch(...)
but i can't understand how i can do that or what i should use.