Skip to main content

listRecordsQuery

listRecordsQuery(
schemaID: ID!
after: Cursor
first: Int
before: Cursor
last: Int
filters: [RecordsWhereInput!]
filterOperator: RecordsWhereOperator
orderBy: RecordOrderInput
associationID: ID
listID: ID
): RecordConnection!

Arguments

listRecordsQuery.schemaID ● ID! non-null scalar

The schema ID of the records to return

listRecordsQuery.after ● Cursor scalar

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

listRecordsQuery.first ● Int scalar

Returns the first n elements from the list.

listRecordsQuery.before ● Cursor scalar

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

listRecordsQuery.last ● Int scalar

Returns the last n elements from the list.

listRecordsQuery.filters ● [RecordsWhereInput!] list input

listRecordsQuery.filterOperator ● RecordsWhereOperator enum

Filter operator i.e. either 'and' or 'or'

listRecordsQuery.orderBy ● RecordOrderInput input

The fields to order the record by, this should be the field API Name

listRecordsQuery.associationID ● ID scalar

The association to get the records for

listRecordsQuery.listID ● ID scalar

The list to scope by

Type

RecordConnection object

A connection to a list of items.