Human
A humanoid creature in the Star Wars universe.
GraphQL Schema definition
- type Human implements Character {
- # The id of the human.
- : ID!
- # The name of the human.
- : String
- # The friends of the human, or an empty list if they
- # have none.
- : [Character]
- # Which movies they appear in.
- : [Episode]
- # The home planet of the human, or null if unknown.
- : String
- # Where are they from and how they came to be who they
- # are.
- : String
- }
- type Human implements Character {
- # The id of the human.
- : ID!
- # The name of the human.
- : String
- # The friends of the human, or an empty list if they
- # have none.
- : [Character]
- # Which movies they appear in.
- : [Episode]
- # The home planet of the human, or null if unknown.
- : String
- # Where are they from and how they came to be who they
- # are.
- : String
- }