OBJECT

Droid

A mechanical creature in the Star Wars universe.

link GraphQL Schema definition

  • type Droid implements Character {
  • # The id of the droid.
  • id: ID!
  • # The name of the droid.
  • name: String
  • # The friends of the droid, or an empty list if they have none.
  • friends: [Character]
  • # Which movies they appear in.
  • appearsIn: [Episode]
  • # Construction date and the name of the designer.
  • secretBackstory: String
  • # The primary function of the droid.
  • primaryFunction: String
  • }

link Require by