metasConnection
Reads and enables pagination through a set of Meta.
metasConnection(
first: Int
last: Int
offset: Int
before: Cursor
after: Cursor
orderBy: [MetasOrderBy!] = [PRIMARY_KEY_ASC]
condition: MetaCondition
filter: MetaFilter
): MetasConnection
Arguments
metasConnection.first ● Int scalar
Only read the first n values of the set.
metasConnection.last ● Int scalar
Only read the last n values of the set.
metasConnection.offset ● Int scalar
Skip the first n values from our after cursor, an alternative to cursor
based pagination. May not be used with last.
metasConnection.before ● Cursor scalar
Read all values in the set before (above) this cursor.
metasConnection.after ● Cursor scalar
Read all values in the set after (below) this cursor.
metasConnection.orderBy ● [MetasOrderBy!] list enum
The method to use when ordering Meta.
metasConnection.condition ● MetaCondition input
A condition to be used in determining which values should be returned by the collection.
metasConnection.filter ● MetaFilter input
A filter to be used in determining which values should be returned by the collection.
Type
MetasConnection object
A connection to a list of Meta values.