SendTestPushNotificationInput
InputAutogenerated input type of SendTestPushNotification
mutation { organization(id: $organizationId) { project(id: $projectId) { sendTestPushNotification } } }
Example
mutation SendTestPushNotification(
$organizationId: ID!
$projectId: ID!
$input: SendTestPushNotificationInput!
) {
organization(id: $organizationId) {
project(id: $projectId) {
sendTestPushNotification(input: $input) {
errors
}
}
}
}