INTERFACE
A character in the Star Wars Trilogy
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 }