sendTestNotification
Send a test notification to a recipient.
sendTestNotification(
input: SendTestNotificationInput
): SendTestNotificationPayload!
Example
- Query
- Variables
- Response
mutation ($input: SendTestNotificationInput) {
sendTestNotification(input: $input) {
sent
}
}
{
"input": {
"body": "body",
"header": "header",
"notificationRecipientId": 42,
"organizationId": 42
}
}
{
"data": {
"sendTestNotification": {
"sent": true
}
}
}
Arguments
sendTestNotification.input ● SendTestNotificationInput input common
The recipient and message details for the test notification.
Type
SendTestNotificationPayload object common
The result of sending a test notification.