-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
interface Character {
# The ID of the character
id: String!
# The name of the character
name: String!
# The friends of the character, or an empty list if they have none
friends: [Character]
# The friends of the character exposed as a connection with edges
friendsConnection(first: Int, after: String): FriendsConnection!
# The movies this character appears in
appearsIn: [Episode]!
}public interface Character {
// The ID of the character
String getId();
// The name of the character
String getName();
// The friends of the character, or an empty list if they have none
List<Character> getFriends();
// The friends of the character exposed as a connection with edges
FriendsConnection getFriendsConnection();
// The movies this character appears in
List<Episode> getAppearsIn();
}Metadata
Metadata
Assignees
Labels
No labels