You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a vec of entities that I can of course just iterate over and retrieve each element with query.get(entity) but I also require the previous element of the vec if it exists, so I wanted to just request all query results at once with something similar to query.many but sending the vec of entities and receiving the query results in whatever format is best (Vec<...>?)
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I have a vec of entities that I can of course just iterate over and retrieve each element with
query.get(entity)
but I also require the previous element of the vec if it exists, so I wanted to just request all query results at once with something similar toquery.many
but sending the vec of entities and receiving the query results in whatever format is best (Vec<...>?)What would you recommend here?
Beta Was this translation helpful? Give feedback.
All reactions