GraphQL - Queries
Consider this query:
What data will this query return?
{ user(id: 2) { name posts { title comments { text } } } }What data will this query return?
{ user(id: 2) { name posts { title comments { text } } } }name of user, nested posts with title, and nested comments with text.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions