GraphQL - Type Relationships
Given this GraphQL query on a many-to-many schema:
What will the result include?
query { students { name courses { title } } }What will the result include?
query { students { name courses { title } } }students with their name and nested courses with title.courses is a list on Student, the result includes each student's name and their list of course titles.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions