SFDCContact
A Salesforce Contact record.
type SFDCContact implements SFDCObjectInterface {
id: String!
connectedAccordId: String
connectedAccordName: String
connectedCrmId: String
email: String
name: String
title: String
}
Fields
SFDCContact.id ● String! non-null scalar
The Salesforce record id.
SFDCContact.connectedAccordId ● String scalar
Id of the accord linked to this Contact, if one exists. Populated by searchSFDCObjects only.
SFDCContact.connectedAccordName ● String scalar
Name of the accord linked to this Contact, if one exists. Populated by searchSFDCObjects only.
SFDCContact.connectedCrmId ● String scalar
The CRM id recorded on the linked accord, if one exists. Populated by searchSFDCObjects only.
SFDCContact.email ● String scalar
The contact's email address.
SFDCContact.name ● String scalar
The contact's full name, as Salesforce formats it.
SFDCContact.title ● String scalar
The contact's job title.
Interfaces
SFDCObjectInterface interface
Fields shared by every Salesforce object variant, including the accord (if any) this CRM record is linked to. The connected-accord fields are populated by searchSFDCObjects only; getSFDCObject leaves them null.
Implemented By
SFDCObject union