Skip to main content

stepToDosConnection

Reads and enables pagination through a set of StepToDo.

stepToDosConnection(
first: Int
last: Int
offset: Int
before: Cursor
after: Cursor
orderBy: [StepToDosOrderBy!] = [PRIMARY_KEY_ASC]
condition: StepToDoCondition
filter: StepToDoFilter
): StepToDosConnection

Arguments

stepToDosConnection.first ● Int scalar

Only read the first n values of the set.

stepToDosConnection.last ● Int scalar

Only read the last n values of the set.

stepToDosConnection.offset ● Int scalar

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

stepToDosConnection.before ● Cursor scalar

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

stepToDosConnection.after ● Cursor scalar

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

stepToDosConnection.orderBy ● [StepToDosOrderBy!] list enum

The method to use when ordering StepToDo.

stepToDosConnection.condition ● StepToDoCondition input

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

stepToDosConnection.filter ● StepToDoFilter input

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

Type

StepToDosConnection object

A connection to a list of StepToDo values.