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