GraphQL types

default types

GraphQL comes with a set of default scalar types out of the box:

type Link {
  id: ID!
  description: String!
  url: String!
  postedBy: User
}

custom types

Enumeration Types

enum Episode {
  NEWHOPE
  EMPIRE
  JEDI
}

ref