Files
web-frontend/graphql/operations/notifications/send-test-messenger-message.graphql

10 lines
244 B
GraphQL

mutation SendTestMessengerMessage($type: MessengerType!, $channelId: String, $message: String) {
sendTestMessengerMessage(type: $type, channelId: $channelId, message: $message) {
type
channelId
success
detail
sentAt
}
}