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!
}