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