This is the collection of result methods within the Queries
interface. There are 9 result methods in total.
getResultTable
The getResultTable
method returns an object containing the entire data of the result Table
of the given query.
hasResultTable
The hasResultTable
method returns a boolean indicating whether a given result Table
exists.
getResultRowIds
The getResultRowIds
method returns the Ids
of every Row
in the result Table
of the given query.
getResultSortedRowIds
The getResultSortedRowIds
method returns the Ids
of every Row
in the result Table
of the given query, sorted according to the values in a specified Cell
.
getResultRow
The getResultRow
method returns an object containing the entire data of a single Row
in the result Table
of the given query.
hasResultRow
The hasResultRow
method returns a boolean indicating whether a given result Row
exists.
getResultCellIds
The getResultCellIds
method returns the Ids
of every Cell
in a given Row
, in the result Table
of the given query.
getResultCell
The getResultCell
method returns the value of a single Cell
in a given Row
, in the result Table
of the given query.
hasResultCell
The hasResultCell
method returns a boolean indicating whether a given result Cell
exists.