Skip to main content

membersConnection

Reads and enables pagination through a set of Member.

membersConnection(
first: Int
last: Int
offset: Int
before: Cursor
after: Cursor
orderBy: [MembersOrderBy!] = [PRIMARY_KEY_ASC]
condition: MemberCondition
filter: MemberFilter
): MembersConnection

Arguments

membersConnection.first ● Int scalar

Only read the first n values of the set.

membersConnection.last ● Int scalar

Only read the last n values of the set.

membersConnection.offset ● Int scalar

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

membersConnection.before ● Cursor scalar

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

membersConnection.after ● Cursor scalar

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

membersConnection.orderBy ● [MembersOrderBy!] list enum

The method to use when ordering Member.

membersConnection.condition ● MemberCondition input

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

membersConnection.filter ● MemberFilter input

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

Type

MembersConnection object

A connection to a list of Member values.