RelatedCustomObjectRecordRow
A custom object record related to a Contact or Account, shaped for the read-only "Custom Objects" datagrid on the entity detail pages. Records of different object types share only a name, so each row also carries its type.
type RelatedCustomObjectRecordRow {
custom_object_record_id: Int!
custom_object_definition_id: Int!
type_label: String!
name: String!
created_at: DateTime!
updated_at: DateTime!
}
Fields
RelatedCustomObjectRecordRow.custom_object_record_id ● Int! non-null scalar
RelatedCustomObjectRecordRow.custom_object_definition_id ● Int! non-null scalar
RelatedCustomObjectRecordRow.type_label ● String! non-null scalar
The custom object definition's singular label, e.g. "Asset".
RelatedCustomObjectRecordRow.name ● String! non-null scalar
The record's primary (list-layout) field value; falls back to "#<id>".


