GraphQL reference

SetOrganizationNumberInput

Input

Autogenerated input type of SetOrganizationNumber

mutation { organization(id: $organizationId) { setOrganizationNumber } }

Example

mutation SetOrganizationNumber(
  $organizationId: ID!
  $input: SetOrganizationNumberInput!
) {
  organization(id: $organizationId) {
    setOrganizationNumber(input: $input) {
        errors
      }
  }
}

Fields

FieldTypeDescription
clientMutationIdStringA unique identifier for the client performing the mutation.
mutationMetadataJSON
numberInt!
organizationIdID!