Skip to main content

reportableTablesConnection

Reads and enables pagination through a set of ReportableTable.

reportableTablesConnection(
first: Int
last: Int
offset: Int
before: Cursor
after: Cursor
orderBy: [ReportableTablesOrderBy!] = [PRIMARY_KEY_ASC]
condition: ReportableTableCondition
filter: ReportableTableFilter
): ReportableTablesConnection

Arguments

reportableTablesConnection.first ● Int scalar

Only read the first n values of the set.

reportableTablesConnection.last ● Int scalar

Only read the last n values of the set.

reportableTablesConnection.offset ● Int scalar

Skip the first n values from our after cursor, an alternative to cursor based pagination. May not be used with last.

reportableTablesConnection.before ● Cursor scalar

Read all values in the set before (above) this cursor.

reportableTablesConnection.after ● Cursor scalar

Read all values in the set after (below) this cursor.

reportableTablesConnection.orderBy ● [ReportableTablesOrderBy!] list enum

The method to use when ordering ReportableTable.

reportableTablesConnection.condition ● ReportableTableCondition input

A condition to be used in determining which values should be returned by the collection.

reportableTablesConnection.filter ● ReportableTableFilter input

A filter to be used in determining which values should be returned by the collection.

Type

ReportableTablesConnection object

A connection to a list of ReportableTable values.