OBJECT

RootQueryType

link GraphQL Schema definition

  • type RootQueryType {
  • # Arguments
  • # id: Actor ID
  • # name: Name of this actor
  • # gender: Gender of this actor
  • actor(id: ID, name: String, gender: String): Actor
  • # Arguments
  • # id: Doctor ID
  • # incarnation: Name of this incarnation of The Doctor
  • # primaryActorID: The actor who usually portrayed this
  • # incarnation of The Doctor
  • doctor(id: ID, incarnation: String, primaryActorID: ID): Doctor
  • # Arguments
  • # id: Companion ID
  • # name: Companion name
  • companion(id: ID, name: String): Companion
  • # Arguments
  • # id: Director ID
  • # name: Director name
  • director(id: ID, name: String): Director
  • # Arguments
  • # id: Writer ID
  • # name: Writer name
  • writer(id: ID, name: String): Writer
  • # Arguments
  • # id: Season ID
  • # name: Season name
  • season(id: ID, name: String): Season
  • # Arguments
  • # id: Episode ID
  • # title: Episode Title
  • # originalAirDate: Original air date (yyyy-mm-dd)
  • # missing: If the episode is currently missing
  • episode(id: ID, title: String, originalAirDate: String, missing: Boolean): Episode
  • # Arguments
  • # id: Serial ID
  • # title: Serial title
  • serial(id: ID, title: String): Serial
  • }

link Require by

This element is not required by anyone