graphql

#web/graphql#web/api

GraphQL

GraphQL is a query language for APIs.

query GetNote($id: ID!) {
  note(id: $id) {
    title
    tags
    publish
  }
}

See REST API Design · TypeScript · Web Technologies Hub.

View in graph