GetTableCell
The GetTableCell
type describes a function that takes a Id
and returns the Cell
value for a particular Row
, optionally in a joined Table
.
When called with one parameter, this function will return the value of the specified Cell
from the query's root Table
for the Row
being selected or filtered.
(cellId: string): CellOrUndefined
Type | Description | |
---|---|---|
cellId | string | |
returns | CellOrUndefined | A |
Since
v2.0.0
When called with two parameters, this function will return the value of the specified Cell
from a Table
that has been joined in the query, for the Row
being selected or filtered.
(
joinedTableId: string,
joinedCellId: string,
): CellOrUndefined
Type | Description | |
---|---|---|
joinedTableId | string | The |
joinedCellId | string | |
returns | CellOrUndefined | A |
Since
v2.0.0
A GetTableCell
can be provided when setting query definitions, specifically in the Select
and Where
clauses when you want to create or filter on calculated values. See those methods for specific examples.
Since
v2.0.0