OBJECT
Droid
A mechanical creature in the Star Wars universe.
link GraphQL Schema definition
- type Droid implements Character {
- # The id of the droid.
- : ID!
- # The name of the droid.
- : String
- # The friends of the droid, or an empty list if they have none.
- : [Character]
- # Which movies they appear in.
- : [Episode]
- # Construction date and the name of the designer.
- : String
- # The primary function of the droid.
- : String
- }