Skip to main content

Contact

A Contact is a saved record for auto-complete and quick reference when sending documents. Contacts belong to the currently logged-in user's scope within a Group and can be organised into ContactGroups.

note

You can only access contacts for the user you are logged in as. Attempting to view other users' contacts returns no results.

Fields

FieldTypeDescription
idID!Unique identifier
nameStringFull preferred name
firstNameStringFirst name
lastNameStringLast name
emailStringEmail address
timeZoneStringTime zone
phoneNumberStringPhone number for SMS

Query

Contacts are accessed via Group.contactConnection:

query GetGroupContacts {
group(id: "Z3JwbGVnYWxlc2lnbxRldg==") {
contactConnection(first: 100) {
contacts {
id
firstName
lastName
email
phoneNumber
}
}
}
}

contactConnection Arguments

ArgumentTypeDescription
firstIntNumber of items
afterIDPagination cursor
filterAWSJSONField-level filter (e.g. {"email":{"beginsWith":"al"}})
  • ContactGroup — organise contacts into groups
  • Group — the group these contacts belong to

Export This Article

Save a copy of this page as PDF or plain text.