INTERFACE

Character

A character in the Star Wars Trilogy

link GraphQL Schema definition

  • interface Character {
  • # The id of the character.
  • id: ID!
  • # The name of the character.
  • name: String
  • # The friends of the character, or an empty list if they have none.
  • friends: [Character]
  • # Which movies they appear in.
  • appearsIn: [Episode]
  • # All secrets about their past.
  • secretBackstory: String
  • }