Skip to main content

userSubscriptionsConnection

Reads and enables pagination through a set of UserSubscription.

userSubscriptionsConnection(
first: Int
last: Int
offset: Int
before: Cursor
after: Cursor
orderBy: [UserSubscriptionsOrderBy!] = [PRIMARY_KEY_ASC]
condition: UserSubscriptionCondition
filter: UserSubscriptionFilter
): UserSubscriptionsConnection

Arguments

userSubscriptionsConnection.first ● Int scalar

Only read the first n values of the set.

userSubscriptionsConnection.last ● Int scalar

Only read the last n values of the set.

userSubscriptionsConnection.offset ● Int scalar

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

userSubscriptionsConnection.before ● Cursor scalar

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

userSubscriptionsConnection.after ● Cursor scalar

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

userSubscriptionsConnection.orderBy ● [UserSubscriptionsOrderBy!] list enum

The method to use when ordering UserSubscription.

userSubscriptionsConnection.condition ● UserSubscriptionCondition input

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

userSubscriptionsConnection.filter ● UserSubscriptionFilter input

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

Type

UserSubscriptionsConnection object

A connection to a list of UserSubscription values.