CreateCompanyInput
Provides the fields and values to use when creating a company.
input CreateCompanyInput {
name: String!
regNumber: String
country: String
vatNumber: String
referenceNumber: String
bankIban: String
notes: String
isClient: Boolean
members: RelatedMembersInput
contacts: RelatedContactsWithNotesInput
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.country ● String scalar
Two-letter country code, ISO 3166-1 alpha-2 (https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2). Example: US
CreateCompanyInput.vatNumber ● String scalar
The company's VAT number.
CreateCompanyInput.referenceNumber ● String scalar
The company's reference number.
CreateCompanyInput.bankIban ● String scalar
The company's bank IBAN.
CreateCompanyInput.notes ● String scalar
The company's notes.
CreateCompanyInput.isClient ● Boolean scalar
Whether this company is a client.
CreateCompanyInput.members ● RelatedMembersInput input
The company's members relation.
CreateCompanyInput.contacts ● RelatedContactsWithNotesInput input
The company's contacts 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