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