OBJECT

Episode

The Episode type

link GraphQL Schema definition

  • type Episode implements Node, Timestamped {
  • shortDescription: String
  • link: String
  • name: String!
  • date: DateTime
  • location: JSON
  • tags: [String]
  • guests: [String]
  • # When paired with the Node interface, this is an automatically managed
  • #
  • # timestamp that is set when an object is first created.
  • createdAt: DateTime!
  • longDescription: Text
  • # When paired with the Node interface, this is an automatically managed
  • #
  • # timestamp that is set whenever an object is mutated.
  • modifiedAt: DateTime!
  • # A globally unique ID.
  • id: ID!
  • videoUrl: String
  • hosts: [String]
  • }