Skip to main content

teamsConnection

Reads and enables pagination through a set of Team.

teamsConnection(
first: Int
last: Int
offset: Int
before: Cursor
after: Cursor
orderBy: [TeamsOrderBy!] = [PRIMARY_KEY_ASC]
condition: TeamCondition
filter: TeamFilter
): TeamsConnection

Arguments

teamsConnection.first ● Int scalar

Only read the first n values of the set.

teamsConnection.last ● Int scalar

Only read the last n values of the set.

teamsConnection.offset ● Int scalar

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

teamsConnection.before ● Cursor scalar

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

teamsConnection.after ● Cursor scalar

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

teamsConnection.orderBy ● [TeamsOrderBy!] list enum

The method to use when ordering Team.

teamsConnection.condition ● TeamCondition input

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

teamsConnection.filter ● TeamFilter input

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

Type

TeamsConnection object

A connection to a list of Team values.