AlanJhonatan / graphql-samples

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

GraphQL

Operations

  • Query ⇒ Used to fetch or read data
  • Mutations ⇒ used to manipulate data

Concepts

  • Under Fetching (Rota HTTP que retorna dados de menos)
  • Over Fetching (Rota HTTP que retorna dados de mais)
  • Schema First Approach
    • First we write the schema first, and later all resolver method.
  • Code First
    • We write all the resolver first, and the schema will basically be generated dynamically

About


Languages

Language:TypeScript 100.0%