datasetTable()
constdatasetTable: (obj) =>string
Extract the table name directly from a dataset.
Parameters
obj
Returns
string
The database table name
Remarks
Composed lens that navigates: dataset → metadata → table
Example
const tableName = datasetTable(dataset);
const query = `SELECT * FROM ${tableName}`;