Skip to main content

CreateDivisionInput

An input type used when creating a Division

input CreateDivisionInput {
organizationId: ID!
parentDivisionId: ID
name: String!
address: PhysicalAddressInput
}

Fields

CreateDivisionInput.organizationId ● ID! non-null scalar

The ID of the parent Organization

CreateDivisionInput.parentDivisionId ● ID scalar

The ID of the parent Division. If provided, the new Division is nested under this Division rather than directly under the Organization.

CreateDivisionInput.name ● String! non-null scalar

The user-displayable name of the Division

CreateDivisionInput.address ● PhysicalAddressInput input

The physical address of the Division

Member Of

createDivision mutation