Skip to main content

RecordAssociation

type RecordAssociation implements Node {
id: ID!
createdAt: Time!
updatedAt: Time!
companyID: String!
recordID: ID!
associatedRecordID: ID!
schemaAssociationTypeID: ID!
position: Int!
record: Record!
associatedRecord: Record!
schemaAssociationType: SchemaAssociation!
values(
after: Cursor
first: Int
before: Cursor
last: Int
orderBy: RecordAssociationValueOrder
where: RecordAssociationValueWhereInput
): RecordAssociationValueConnection!
}

Fields

RecordAssociation.id ● ID! non-null scalar

RecordAssociation.createdAt ● Time! non-null scalar

RecordAssociation.updatedAt ● Time! non-null scalar

RecordAssociation.companyID ● String! non-null scalar

RecordAssociation.recordID ● ID! non-null scalar

RecordAssociation.associatedRecordID ● ID! non-null scalar

RecordAssociation.schemaAssociationTypeID ● ID! non-null scalar

RecordAssociation.position ● Int! non-null scalar

RecordAssociation.record ● Record! non-null object

RecordAssociation.associatedRecord ● Record! non-null object

RecordAssociation.schemaAssociationType ● SchemaAssociation! non-null object

RecordAssociation.values ● RecordAssociationValueConnection! non-null object

RecordAssociation.values.after ● Cursor scalar

Returns the elements in the list that come after the specified cursor.

RecordAssociation.values.first ● Int scalar

Returns the first n elements from the list.

RecordAssociation.values.before ● Cursor scalar

Returns the elements in the list that come before the specified cursor.

RecordAssociation.values.last ● Int scalar

Returns the last n elements from the list.

RecordAssociation.values.orderBy ● RecordAssociationValueOrder input

Ordering options for RecordAssociationValues returned from the connection.

RecordAssociation.values.where ● RecordAssociationValueWhereInput input

Filtering options for RecordAssociationValues returned from the connection.

Interfaces

Node interface

An object with an ID. Follows the Relay Global Object Identification Specification

Returned By

createRecordAssociation mutation ● updateRecordAssociationValues mutation

Member Of

Record object ● RecordAssociationEdge object ● RecordAssociationValue object ● SchemaAssociation object ● SchemaImportRecord object