GraphQL reference

CreateOrUpdatePaymentSubmissionPayload

Object

Autogenerated return type of CreateOrUpdatePaymentSubmission.

mutation { organization(id: $organizationId) { project(id: $projectId) { createOrUpdatePaymentSubmission } } }

Example

mutation CreateOrUpdatePaymentSubmission(
  $organizationId: ID!
  $projectId: ID!
  $input: CreateOrUpdatePaymentSubmissionInput!
) {
  organization(id: $organizationId) {
    project(id: $projectId) {
      createOrUpdatePaymentSubmission(input: $input) {
        paymentSubmission
        errors
      }
    }
  }
}

Fields

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