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