SFDCAccount
A Salesforce Account record, with any accords linked to it.
type SFDCAccount implements SFDCObjectInterface {
id: String!
connectedAccordId: String
connectedAccordName: String
connectedCrmId: String
connectedAccords: [ConnectedAccord]
name: String
sfdcUrl: String
createdDate: String
ownerName: String
type: String
website: String
industry: String
}
Fields
SFDCAccount.id ● String! non-null scalar
The Salesforce record id.
SFDCAccount.connectedAccordId ● String scalar
Id of the accord linked to this Account, if one exists. Populated by searchSFDCObjects only.
SFDCAccount.connectedAccordName ● String scalar
Name of the accord linked to this Account, if one exists. Populated by searchSFDCObjects only.
SFDCAccount.connectedCrmId ● String scalar
The CRM id recorded on the linked accord, if one exists. Populated by searchSFDCObjects only.
SFDCAccount.connectedAccords ● [ConnectedAccord] list object
All accords linked to this Salesforce Account. Populated by searchSFDCObjects only.
SFDCAccount.name ● String scalar
The Account name.
SFDCAccount.sfdcUrl ● String scalar
Deep link to the record in the Salesforce Lightning UI.
SFDCAccount.createdDate ● String scalar
Date the Account was created, as YYYY-MM-DD, or "-" when
Salesforce reports no creation date.
SFDCAccount.ownerName ● String scalar
Display name of the record owner, falling back to their email and then to "-" when the record has no owner.
SFDCAccount.type ● String scalar
The Account type, e.g. "Customer" or "Prospect".
SFDCAccount.website ● String scalar
The Account website.
SFDCAccount.industry ● String scalar
The Account industry.
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