UpdateCompanyInput
Provides the fields and values to use when updating a company.
input UpdateCompanyInput {
id: ID!
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
}
Fields
UpdateCompanyInput.id ● ID! non-null scalar
Specifies the company to update.
UpdateCompanyInput.name ● String scalar
The company's name.
UpdateCompanyInput.regNumber ● String scalar
The company's registration number.
UpdateCompanyInput.country ● String scalar
Two-letter country code, ISO 3166-1 alpha-2 (https://en.wikipedia.org/wiki/ISO_3166-1_alpha-2). Example: US
UpdateCompanyInput.vatNumber ● String scalar
The company's VAT number.
UpdateCompanyInput.referenceNumber ● String scalar
The company's reference number.
UpdateCompanyInput.bankIban ● String scalar
The company's bank IBAN.
UpdateCompanyInput.notes ● String scalar
The company's notes.
UpdateCompanyInput.isClient ● Boolean scalar
Whether this company is a client.
UpdateCompanyInput.members ● RelatedMembersInput input
The company's members relation.
UpdateCompanyInput.contacts ● RelatedContactsWithNotesInput input
The company's contacts relation.
UpdateCompanyInput.tasks ● RelatedTasksInput input
The company's tasks relation.
UpdateCompanyInput.letters ● RelatedLettersInput input
The company's letters relation.
UpdateCompanyInput.coordinations ● RelatedCoordinationsInput input
The company's coordinations relation.
UpdateCompanyInput.specifications ● RelatedSpecificationsInput input
The company's specifications relation.
UpdateCompanyInput.contracts ● ContactRelatedContractsInput input
The company's contracts relation.
UpdateCompanyInput.submissions ● RelatedSubmissionsInput input
The company's submissions relation.
UpdateCompanyInput.meters ● RelatedMetersInput input
The company's meters relation.
UpdateCompanyInput.tags ● RelatedTagsInput input
The company's tags relation.
Member Of
updateCompany mutation