CrmObject
No description
type CrmObject implements Node {
nodeId: ID!
id: String!
crmObjectDescriptionId: String!
crmObjectId: String!
data: CrmObjectData
workspaceId: String
version: Int!
deletedAt: Datetime
updatedAt: Datetime!
createdAt: Datetime!
searchVector: FullText
workspace: Workspace
crmObjectDescription: CrmObjectDescription
accord: Accord
workspaceAccount: WorkspaceAccount
accordsByCrmIdConnection(
first: Int
last: Int
offset: Int
before: Cursor
after: Cursor
orderBy: [AccordsOrderBy!] = [PRIMARY_KEY_ASC]
condition: AccordCondition
filter: AccordFilter
): AccordsConnection!
accordsByCrmId(
first: Int
offset: Int
orderBy: [AccordsOrderBy!]
condition: AccordCondition
filter: AccordFilter
): [Accord!]!
searchVectorRank: Float
resolvedData: CrmObjectData
}
Fields
CrmObject.nodeId ● ID! non-null scalar
A globally unique identifier. Can be used in various places throughout the system to identify this single value.
CrmObject.id ● String! non-null scalar
CrmObject.crmObjectDescriptionId ● String! non-null scalar
CrmObject.crmObjectId ● String! non-null scalar
CrmObject.data ● CrmObjectData object
CrmObject.workspaceId ● String scalar
CrmObject.version ● Int! non-null scalar
CrmObject.deletedAt ● Datetime scalar
CrmObject.updatedAt ● Datetime! non-null scalar
CrmObject.createdAt ● Datetime! non-null scalar
CrmObject.searchVector ● FullText scalar
CrmObject.workspace ● Workspace object
Reads a single Workspace that is related to this CrmObject.
CrmObject.crmObjectDescription ● CrmObjectDescription object
Reads a single CrmObjectDescription that is related to this CrmObject.
CrmObject.accord ● Accord object
Reads a single Accord that is related to this CrmObject.
CrmObject.workspaceAccount ● WorkspaceAccount object
Reads a single WorkspaceAccount that is related to this CrmObject.
CrmObject.accordsByCrmIdConnection ● AccordsConnection! non-null object
Reads and enables pagination through a set of Accord.
CrmObject.accordsByCrmIdConnection.first ● Int scalar
Only read the first n values of the set.
CrmObject.accordsByCrmIdConnection.last ● Int scalar
Only read the last n values of the set.
CrmObject.accordsByCrmIdConnection.offset ● Int scalar
Skip the first n values from our after cursor, an alternative to cursor
based pagination. May not be used with last.
CrmObject.accordsByCrmIdConnection.before ● Cursor scalar
Read all values in the set before (above) this cursor.
CrmObject.accordsByCrmIdConnection.after ● Cursor scalar
Read all values in the set after (below) this cursor.
CrmObject.accordsByCrmIdConnection.orderBy ● [AccordsOrderBy!] list enum
The method to use when ordering Accord.
CrmObject.accordsByCrmIdConnection.condition ● AccordCondition input
A condition to be used in determining which values should be returned by the collection.
CrmObject.accordsByCrmIdConnection.filter ● AccordFilter input
A filter to be used in determining which values should be returned by the collection.
CrmObject.accordsByCrmId ● [Accord!]! non-null object
Reads and enables pagination through a set of Accord.
CrmObject.accordsByCrmId.first ● Int scalar
Only read the first n values of the set.
CrmObject.accordsByCrmId.offset ● Int scalar
Skip the first n values.
CrmObject.accordsByCrmId.orderBy ● [AccordsOrderBy!] list enum
The method to use when ordering Accord.
CrmObject.accordsByCrmId.condition ● AccordCondition input
A condition to be used in determining which values should be returned by the collection.
CrmObject.accordsByCrmId.filter ● AccordFilter input
A filter to be used in determining which values should be returned by the collection.
CrmObject.searchVectorRank ● Float scalar
Full-text search ranking when filtered by searchVector.
CrmObject.resolvedData ● CrmObjectData object
The CRM object's data with enumeration fields (picklists,
selects, checkboxes) mapped from stored raw values to their
human-readable labels using the object's field descriptions.
Multi-value fields are joined with commas. Returns the raw data
unchanged when no field descriptions apply.
Interfaces
Node interface
An object with a globally unique ID.
Returned By
crmObject query ● crmObjectByNodeId query ● crmObjects query
Member Of
Accord object ● CreateWorkspaceAccountPayload object ● CrmObjectDescription object ● CrmObjectsConnection object ● CrmObjectsEdge object ● DeleteCrmObjectPayload object ● DeleteWorkspaceAccountPayload object ● RecoverAccordPayload object ● RecoverWorkspaceAccountPayload object ● RefreshAccordCrmDataPayload object ● UpdateAccordPayload object ● UpdateCrmObjectPayload object ● UpdateWorkspaceAccountPayload object ● UpsertCrmObjectsPayload object ● UpsertWorkspaceAccountPayload object ● Workspace object ● WorkspaceAccount object