Skip to main content

spaceScoresConnection

Reads and enables pagination through a set of SpaceScore.

spaceScoresConnection(
first: Int
last: Int
offset: Int
before: Cursor
after: Cursor
orderBy: [SpaceScoresOrderBy!] = [PRIMARY_KEY_ASC]
condition: SpaceScoreCondition
filter: SpaceScoreFilter
): SpaceScoresConnection

Arguments

spaceScoresConnection.first ● Int scalar

Only read the first n values of the set.

spaceScoresConnection.last ● Int scalar

Only read the last n values of the set.

spaceScoresConnection.offset ● Int scalar

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

spaceScoresConnection.before ● Cursor scalar

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

spaceScoresConnection.after ● Cursor scalar

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

spaceScoresConnection.orderBy ● [SpaceScoresOrderBy!] list enum

The method to use when ordering SpaceScore.

spaceScoresConnection.condition ● SpaceScoreCondition input

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

spaceScoresConnection.filter ● SpaceScoreFilter input

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

Type

SpaceScoresConnection object

A connection to a list of SpaceScore values.