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
| Name | Type | Description |
|---|---|---|
_id | ID! | Internal database identifier. |
createdAt | Date! | Date when the contact was created. |
updatedAt | Date! | Date when the contact was last updated. |
firstName | String | Contact's first name. |
lastName | String | Contact's last name. |
email | String | Contact's email address. |
name | String | Contact's full name. |
telephone | String | Contact's telephone number. |
organisation | String | Organization or company name. |
lists | [ContactList!]! | Customer lists the contact is a member of. |
notes | String | Notes or comments about the contact. |
address | Address | Contact's address. |