OBJECT

Subscription

link GraphQL Schema definition

  • type Subscription {
  • # Get real-time updates
  • #
  • # Arguments
  • # _id: subscribe the changes to specific _id
  • # muatation: subscribe the changes type, eg CREATE, UPDATE or
  • # DELETE
  • # teamId: subscribe the changes from a team
  • # type: subscribe the changes from object type (eg, asset,
  • # playlist, schedule), refer to OBJECT_TYPES
  • subscribe(
  • _id: String,
  • muatation: MUTATION_TYPES,
  • teamId: String,
  • type: OBJECT_TYPES
  • ): SubscriptionResponse!
  • }

link Require by

This element is not required by anyone