GraphQL reference

CreateCompanyPayload

Object

Autogenerated return type of CreateCompany.

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

Example

mutation CreateCompany(
  $organizationId: ID!
  $input: CreateCompanyInput!
) {
  organization(id: $organizationId) {
    createCompany(input: $input) {
        company
        errors
      }
  }
}

Fields

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