Skip to content

Instantly share code, notes, and snippets.

@isacjunior
Created May 16, 2019 13:04
Show Gist options
  • Save isacjunior/75e5ead67221db2474934c0d86da3180 to your computer and use it in GitHub Desktop.
Save isacjunior/75e5ead67221db2474934c0d86da3180 to your computer and use it in GitHub Desktop.
type People {
name: String,
height: String,
mass: String,
hair_color: String,
skin_color: String,
eye_color: String,
birth_year: String,
gender: String,
homeworld: String,
films: [String],
species: [String],
vehicles: [String],
starships: [String],
created: String,
edited: String,
url: String
}
type Query {
people(id: ID!): People,
peoples: [People]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment