Skip to main content

dealCriteriaConnection

Reads and enables pagination through a set of DealCriterion.

dealCriteriaConnection(
first: Int
last: Int
offset: Int
before: Cursor
after: Cursor
orderBy: [DealCriteriaOrderBy!] = [PRIMARY_KEY_ASC]
condition: DealCriterionCondition
filter: DealCriterionFilter
): DealCriteriaConnection

Arguments

dealCriteriaConnection.first ● Int scalar

Only read the first n values of the set.

dealCriteriaConnection.last ● Int scalar

Only read the last n values of the set.

dealCriteriaConnection.offset ● Int scalar

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

dealCriteriaConnection.before ● Cursor scalar

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

dealCriteriaConnection.after ● Cursor scalar

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

dealCriteriaConnection.orderBy ● [DealCriteriaOrderBy!] list enum

The method to use when ordering DealCriterion.

dealCriteriaConnection.condition ● DealCriterionCondition input

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

dealCriteriaConnection.filter ● DealCriterionFilter input

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

Type

DealCriteriaConnection object

A connection to a list of DealCriterion values.