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