Skip to main content

jobsConnection

Reads and enables pagination through a set of Job.

jobsConnection(
after: Cursor
before: Cursor
filter: JobFilter
first: Int
last: Int
offset: Int
orderBy: [JobOrderBy!] = [NATURAL]
): JobConnection

Arguments

jobsConnection.after ● Cursor scalar

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

jobsConnection.before ● Cursor scalar

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

jobsConnection.filter ● JobFilter input

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

jobsConnection.first ● Int scalar

Only read the first n values of the set.

jobsConnection.last ● Int scalar

Only read the last n values of the set.

jobsConnection.offset ● Int scalar

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

jobsConnection.orderBy ● [JobOrderBy!] list enum

The method to use when ordering Job.

Type

JobConnection object

A connection to a list of Job values.