Skip to main content

commentReactionsConnection

Reads and enables pagination through a set of CommentReaction.

commentReactionsConnection(
first: Int
last: Int
offset: Int
before: Cursor
after: Cursor
orderBy: [CommentReactionsOrderBy!] = [PRIMARY_KEY_ASC]
condition: CommentReactionCondition
filter: CommentReactionFilter
): CommentReactionsConnection

Arguments

commentReactionsConnection.first ● Int scalar

Only read the first n values of the set.

commentReactionsConnection.last ● Int scalar

Only read the last n values of the set.

commentReactionsConnection.offset ● Int scalar

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

commentReactionsConnection.before ● Cursor scalar

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

commentReactionsConnection.after ● Cursor scalar

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

commentReactionsConnection.orderBy ● [CommentReactionsOrderBy!] list enum

The method to use when ordering CommentReaction.

commentReactionsConnection.condition ● CommentReactionCondition input

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

commentReactionsConnection.filter ● CommentReactionFilter input

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

Type

CommentReactionsConnection object

A connection to a list of CommentReaction values.