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.
- : Int!
- # The name of the reaction.
- : String!
- # The name of the service associated with the reaction.
- : String!
- # The service associated with the reaction.
- : Service!
- # The React object representing the action to be taken when the reaction is
- # triggered.
- : React!
- # The URL of the outgoing webhook associated with the reaction.
- : String
- # A flag indicating whether the reaction is enabled or not.
- : Boolean!
- # A flag indicating whether the reaction is part of a chain or not.
- : Boolean!
- }