How do I resolve inverse relationships in a GraphQL query? Say I have a 1:n
pointer like Game → Player. I can easily fetch getGame { player { id } }
, but can I easily get the games for a player with getPlayer
or do I have to make a separate call to getGames
filtering by player?
You will have to make a separate call.