GraphQL
Introduction to GraphQL
Url
https://graphql.org/learn/
Sample GraphQL schema
Fields
type Query { me: User } type User { id: ID name: String }
Queries and Mutations
https://graphql.org/learn/queries/