-
-
Notifications
You must be signed in to change notification settings - Fork 29
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
how to use nested object to make query? #55
Comments
The game struct contains player starct。。 |
Maybe that doesn't make sense.. But I seem to have this problem |
GraphQL doesn't support recursive structures (see graphql/graphql-spec#91), so this library doesn't either. For that example, the best thing to do would probably be to move query ($playerId: ID!) {
joinGames(playerId: $playerId) {
gameName
location
gameTime
players {
name
age
}
}
} |
oh。 thx |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
No description provided.
The text was updated successfully, but these errors were encountered: