OBJECT

Reaction

A reaction object representing a reaction that can be triggered by a webhook.

link GraphQL Schema definition

  • type Reaction {
  • # The unique identifier of the reaction.
  • reactionId: Int!
  • # The name of the reaction.
  • reactionName: String!
  • # The name of the service associated with the reaction.
  • serviceName: String!
  • # The service associated with the reaction.
  • service: Service!
  • # The React object representing the action to be taken when the reaction is
  • # triggered.
  • react: React!
  • # The URL of the outgoing webhook associated with the reaction.
  • outgoingWebhook: String
  • # A flag indicating whether the reaction is enabled or not.
  • enabled: Boolean!
  • # A flag indicating whether the reaction is part of a chain or not.
  • enabledChain: Boolean!
  • }