OBJECT

Human

A humanoid creature in the Star Wars universe.

link GraphQL Schema definition

  • type Human implements Character {
  • # The id of the human.
  • id: ID!
  • # The name of the human.
  • name: String
  • # The friends of the human, or an empty list if they have none.
  • friends: [Character]
  • # Which movies they appear in.
  • appearsIn: [Episode]
  • # The home planet of the human, or null if unknown.
  • homePlanet: String
  • # Where are they from and how they came to be who they are.
  • secretBackstory: String
  • }