trigger
Get the details of a published trigger with a given ID.
Arguments
The ID of the trigger.
Returns
Trigger!Possible Errors
Allowed Viewers
Query Complexity
3Examples
The example data in the variables and responses below are autogenerated values designed to resemble real inputs. They do not represent actual customer data, and in some cases may require additional validation.
query Trigger($triggerId: ID!) {
trigger(triggerId: $triggerId) {
accounts {
...AccountConnectionTypeConnectionFragment
}
accountsLinkedAt
createdAt
id
messages {
...MessageConnectionFragment
}
processingStatus
triggerTypeCode
}
}
Variables
{
"triggerId": "41994107"
}
Response
{
"data": {
"trigger": {
"accounts": AccountConnectionTypeConnection,
"accountsLinkedAt": "1987-09-17T06:42:21.448594+00:00",
"createdAt": "2008-11-13T18:56:39.604742+00:00",
"id": "40207321",
"messages": MessageConnection,
"processingStatus": "UNPROCESSED",
"triggerTypeCode": "require-front-particularly-rock-president"
}
}
}