Skip to main content

notificationsConnection

Reads and enables pagination through a set of Notification.

notificationsConnection(
first: Int
last: Int
offset: Int
before: Cursor
after: Cursor
orderBy: [NotificationsOrderBy!] = [PRIMARY_KEY_ASC]
condition: NotificationCondition
filter: NotificationFilter
): NotificationsConnection

Arguments

notificationsConnection.first ● Int scalar

Only read the first n values of the set.

notificationsConnection.last ● Int scalar

Only read the last n values of the set.

notificationsConnection.offset ● Int scalar

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

notificationsConnection.before ● Cursor scalar

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

notificationsConnection.after ● Cursor scalar

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

notificationsConnection.orderBy ● [NotificationsOrderBy!] list enum

The method to use when ordering Notification.

notificationsConnection.condition ● NotificationCondition input

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

notificationsConnection.filter ● NotificationFilter input

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

Type

NotificationsConnection object

A connection to a list of Notification values.