CreateCompanyInput
Provides the fields and values to use when creating a company.
input CreateCompanyInput {
name: String!
regNumber: String
vatNumber: String
referenceNumber: String
notes: String
isClient: Boolean
members: RelatedMembersInput
tasks: RelatedTasksInput
letters: RelatedLettersInput
coordinations: RelatedCoordinationsInput
specifications: RelatedSpecificationsInput
contracts: ContactRelatedContractsInput
submissions: RelatedSubmissionsInput
meters: RelatedMetersInput
tags: RelatedTagsInput
copyRelations: CopyRelationsInput
}
Fields
CreateCompanyInput.name
● String!
non-null scalar
The company's name.
CreateCompanyInput.regNumber
● String
scalar
The company's registration number.
CreateCompanyInput.vatNumber
● String
scalar
The company's VAT number.
CreateCompanyInput.referenceNumber
● String
scalar
The company's reference number.
CreateCompanyInput.notes
● String
scalar
The company's notes.
CreateCompanyInput.isClient
● Boolean
scalar
Whether this company is a client.
CreateCompanyInput.members
● RelatedMembersInput
input
The person's members relation.
CreateCompanyInput.tasks
● RelatedTasksInput
input
The company's tasks relation.
CreateCompanyInput.letters
● RelatedLettersInput
input
The company's letters relation.
CreateCompanyInput.coordinations
● RelatedCoordinationsInput
input
The company's coordinations relation.
CreateCompanyInput.specifications
● RelatedSpecificationsInput
input
The company's specifications relation.
CreateCompanyInput.contracts
● ContactRelatedContractsInput
input
The company's contracts relation.
CreateCompanyInput.submissions
● RelatedSubmissionsInput
input
The company's submissions relation.
CreateCompanyInput.meters
● RelatedMetersInput
input
The company's meters relation.
CreateCompanyInput.tags
● RelatedTagsInput
input
The company's tags relation.
CreateCompanyInput.copyRelations
● CopyRelationsInput
input
The relations that should be copied from another entity.
Member Of
createCompany
mutation