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