GraphQL reference

SendTestPushNotificationPayload

Object

Autogenerated return 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
      }
    }
  }
}

Fields

FieldTypeDescription
clientMutationIdStringA unique identifier for the client performing the mutation.
constructableUrlString
errors[String!]!