Skip to main content

summariesConnection

Reads and enables pagination through a set of Summary.

summariesConnection(
first: Int
last: Int
offset: Int
before: Cursor
after: Cursor
orderBy: [SummariesOrderBy!] = [PRIMARY_KEY_ASC]
condition: SummaryCondition
filter: SummaryFilter
): SummariesConnection

Arguments

summariesConnection.first ● Int scalar

Only read the first n values of the set.

summariesConnection.last ● Int scalar

Only read the last n values of the set.

summariesConnection.offset ● Int scalar

Skip the first n values from our after cursor, an alternative to cursor based pagination. May not be used with last.

summariesConnection.before ● Cursor scalar

Read all values in the set before (above) this cursor.

summariesConnection.after ● Cursor scalar

Read all values in the set after (below) this cursor.

summariesConnection.orderBy ● [SummariesOrderBy!] list enum

The method to use when ordering Summary.

summariesConnection.condition ● SummaryCondition input

A condition to be used in determining which values should be returned by the collection.

summariesConnection.filter ● SummaryFilter input

A filter to be used in determining which values should be returned by the collection.

Type

SummariesConnection object

A connection to a list of Summary values.