Skip to content

Latest commit

 

History

History
23 lines (20 loc) · 295 Bytes

File metadata and controls

23 lines (20 loc) · 295 Bytes
type Query {
  hero: Character
}

type Character {
  name: String
  friends: [Character]
  homeWorld: Planet
  species: Species
}

type Planet {
  name: String
  climate: String
}

type Species {
  name: String
  lifespan: Int
  origin: Planet
}