Skip to main content

Contact Object

Description

Represents a contact (potential customer or lead) with personal information and list memberships.

Declaration

type Contact {
_id: ID!
createdAt: Date!
updatedAt: Date!
firstName: String
lastName: String
email: String
name: String
telephone: String
organisation: String
lists: [ContactList!]!
notes: String
address: Address
}

Fields

NameTypeDescription
_idID!Internal database identifier.
createdAtDate!Date when the contact was created.
updatedAtDate!Date when the contact was last updated.
firstNameStringContact's first name.
lastNameStringContact's last name.
emailStringContact's email address.
nameStringContact's full name.
telephoneStringContact's telephone number.
organisationStringOrganization or company name.
lists[ContactList!]!Customer lists the contact is a member of.
notesStringNotes or comments about the contact.
addressAddressContact's address.