notesConnection
Reads and enables pagination through a set of Note.
notesConnection(
first: Int
last: Int
offset: Int
before: Cursor
after: Cursor
orderBy: [NotesOrderBy!] = [PRIMARY_KEY_ASC]
condition: NoteCondition
filter: NoteFilter
): NotesConnection
Arguments
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.before ● Cursor scalar
Read all values in the set before (above) this cursor.
notesConnection.after ● Cursor scalar
Read all values in the set after (below) this cursor.
notesConnection.orderBy ● [NotesOrderBy!] list enum
The method to use when ordering Note.
notesConnection.condition ● NoteCondition input
A condition to be used in determining which values should be returned by the collection.
notesConnection.filter ● NoteFilter input
A filter to be used in determining which values should be returned by the collection.
Type
NotesConnection object
A connection to a list of Note values.