myAccordsConnection
DEPRECATED
Unused by the app; use accordSearchViewsConnection / accordsConnection instead.
Connection form of the accords the current user is a member of.
myAccordsConnection(
first: Int
last: Int
offset: Int
before: Cursor
after: Cursor
orderBy: [AccordsOrderBy!] = [PRIMARY_KEY_ASC]
condition: AccordCondition
filter: AccordFilter
): AccordsConnection @deprecated
Arguments
myAccordsConnection.first ● Int scalar
Only read the first n values of the set.
myAccordsConnection.last ● Int scalar
Only read the last n values of the set.
myAccordsConnection.offset ● Int scalar
Skip the first n values from our after cursor, an alternative to cursor
based pagination. May not be used with last.
myAccordsConnection.before ● Cursor scalar
Read all values in the set before (above) this cursor.
myAccordsConnection.after ● Cursor scalar
Read all values in the set after (below) this cursor.
myAccordsConnection.orderBy ● [AccordsOrderBy!] list enum
The method to use when ordering Accord.
myAccordsConnection.condition ● AccordCondition input
A condition to be used in determining which values should be returned by the collection.
myAccordsConnection.filter ● AccordFilter input
A filter to be used in determining which values should be returned by the collection.
Type
AccordsConnection object
A connection to a list of Accord values.