OBJECT

Episode

An episode of a Serial, or a single episode of the show

link GraphQL Schema definition

  • type Episode {
  • # Episode ID
  • id: ID
  • # Episode title
  • title: String
  • # Serial this Episode appears in
  • serial: Serial
  • # Episode order within a serial
  • episodeOrder: Int
  • # Original air date (yyyy-mm-dd)
  • originalAirDate: String
  • # Original running time (hh:mm)
  • runtime: String
  • # UK viewers (millions) of the first showing
  • ukViewersMM: Float
  • # Appreciation Index of the first showing
  • appreciationIndex: Int
  • # Whether the episode is currently missing
  • missing: Boolean
  • # Whether a missing episode has been officially re-created (such as the animated
  • # re-creations)
  • recreated: Boolean
  • }