sogko/graphql-schema-language-cheat-sheet

Schema Definition

sogko opened this issue · 0 comments

sogko commented

Related:

Example

schema {
  query: Root
}

type Root {
  users: [User]
}

type User {
  name: String
}