OBJECT

Subscription

link GraphQL Schema definition

  • type Subscription {
  • _: Boolean
  • # Returns a notification when an encoder's active broadcast changes.
  • #
  • # Arguments
  • # deviceId: The encoder unique device ID.
  • activeBroadcastChanged(deviceId: String!): ActiveBroadcastChangedResult
  • # Returns a notification when the status of a broadcast changes.
  • #
  • # Arguments
  • # broadcastId: The broadcast ID.
  • broadcastStatusChanged(broadcastId: String!): BroadcastStatusChangedResult
  • # Returns a notification when an encoder is sent a command.
  • #
  • # Arguments
  • # deviceId: The encoder unique device ID.
  • encoderCommandSent(deviceId: String!): EncoderCommandRecieved
  • # Returns a notification when an encoder responds to a command.
  • #
  • # Arguments
  • # encoderId: The encoder unique ID.
  • encoderCommandResponseSent(encoderId: String!): EncoderCommandResponseRecieved
  • }

link Require by

This element is not required by anyone