Skip to main content

UpdateContactInput

Provides the fields and values to use when updating a contact.

input UpdateContactInput {
id: ID!
type: ContactType
name: String
lastName: String
regNumber: String
vatNumber: String
referenceNumber: String
notes: String
isClient: Boolean
members: RelatedMembersInput
tasks: RelatedTasksInput
properties: RelatedPropertiesInput
projects: ContactRelatedProjectsInput
letters: RelatedLettersInput
coordinations: RelatedCoordinationsInput
specifications: RelatedSpecificationsInput
contracts: ContactRelatedContractsInput
submissions: RelatedSubmissionsInput
meters: RelatedMetersInput
tags: RelatedTagsInput
}

Fields

UpdateContactInput.id ● ID! non-null scalar

Specifies the contact to update.

UpdateContactInput.type ● ContactType enum

The contact's type.

UpdateContactInput.name ● String scalar

The contact's name.

UpdateContactInput.lastName ● String scalar

The contact's last name.

UpdateContactInput.regNumber ● String scalar

The contact's registration number.

UpdateContactInput.vatNumber ● String scalar

The contact's VAT number.

UpdateContactInput.referenceNumber ● String scalar

The contact's reference number.

UpdateContactInput.notes ● String scalar

The contact's notes.

UpdateContactInput.isClient ● Boolean scalar

Whether this contact is a client.

UpdateContactInput.members ● RelatedMembersInput input

The person's members relation.

UpdateContactInput.tasks ● RelatedTasksInput input

The contact's tasks relation.

UpdateContactInput.properties ● RelatedPropertiesInput input

The contact's properties relation.

UpdateContactInput.projects ● ContactRelatedProjectsInput input

The contact's projects relation.

UpdateContactInput.letters ● RelatedLettersInput input

The contact's letters relation.

UpdateContactInput.coordinations ● RelatedCoordinationsInput input

The contact's coordinations relation.

UpdateContactInput.specifications ● RelatedSpecificationsInput input

The contact's specifications relation.

UpdateContactInput.contracts ● ContactRelatedContractsInput input

The contact's contracts relation.

UpdateContactInput.submissions ● RelatedSubmissionsInput input

The contact's submissions relation.

UpdateContactInput.meters ● RelatedMetersInput input

The contact's meters relation.

UpdateContactInput.tags ● RelatedTagsInput input

The contact's tags relation.

Member Of

updateContact mutation