Skip to content

Add descriptions as comments #69

@JacobMountain

Description

@JacobMountain
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

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions