Skip to main content

CreateContactInput

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

input CreateContactInput {
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
copyRelations: CopyRelationsInput
}

Fields

CreateContactInput.type ● ContactType enum

The contact's type.

CreateContactInput.name ● String! non-null scalar

The contact's name.

CreateContactInput.lastName ● String scalar

The contact's last name.

CreateContactInput.regNumber ● String scalar

The contact's registration number.

CreateContactInput.vatNumber ● String scalar

The contact's VAT number.

CreateContactInput.referenceNumber ● String scalar

The contact's reference number.

CreateContactInput.notes ● String scalar

The contact's notes.

CreateContactInput.isClient ● Boolean scalar

Whether this contact is a client.

CreateContactInput.members ● RelatedMembersInput input

The person's members relation.

CreateContactInput.tasks ● RelatedTasksInput input

The contact's tasks relation.

CreateContactInput.properties ● RelatedPropertiesInput input

The contact's properties relation.

CreateContactInput.projects ● ContactRelatedProjectsInput input

The contact's projects relation.

CreateContactInput.letters ● RelatedLettersInput input

The contact's letters relation.

CreateContactInput.coordinations ● RelatedCoordinationsInput input

The contact's coordinations relation.

CreateContactInput.specifications ● RelatedSpecificationsInput input

The contact's specifications relation.

CreateContactInput.contracts ● ContactRelatedContractsInput input

The contact's contracts relation.

CreateContactInput.submissions ● RelatedSubmissionsInput input

The contact's submissions relation.

CreateContactInput.meters ● RelatedMetersInput input

The contact's meters relation.

CreateContactInput.tags ● RelatedTagsInput input

The contact's tags relation.

CreateContactInput.copyRelations ● CopyRelationsInput input

The relations that should be copied from another entity.

Member Of

createContact mutation