sectionsConnection
Reads and enables pagination through a set of Section.
sectionsConnection(
first: Int
last: Int
offset: Int
before: Cursor
after: Cursor
orderBy: [SectionsOrderBy!] = [PRIMARY_KEY_ASC]
condition: SectionCondition
filter: SectionFilter
): SectionsConnection
Arguments
sectionsConnection.first ● Int scalar
Only read the first n values of the set.
sectionsConnection.last ● Int scalar
Only read the last n values of the set.
sectionsConnection.offset ● Int scalar
Skip the first n values from our after cursor, an alternative to cursor
based pagination. May not be used with last.
sectionsConnection.before ● Cursor scalar
Read all values in the set before (above) this cursor.
sectionsConnection.after ● Cursor scalar
Read all values in the set after (below) this cursor.
sectionsConnection.orderBy ● [SectionsOrderBy!] list enum
The method to use when ordering Section.
sectionsConnection.condition ● SectionCondition input
A condition to be used in determining which values should be returned by the collection.
sectionsConnection.filter ● SectionFilter input
A filter to be used in determining which values should be returned by the collection.
Type
SectionsConnection object
A connection to a list of Section values.