Programming ConceptsGraphQL

GraphQL is a query language for APIs that allows clients to request only the data they need, reducing over-fetching.

query {
  user(id: 1) {
    name
    email
  }
}