Introduction to GraphQL
Query language
What does GraphQL do?
{
institution {
name
}
}{
"data": {
"institution": {
"name": "Happy University"
}
}
}
Core concepts
Queries and Mutations:
Basics
Advanced
Last updated