Name of key for data library report.
Retrieve visualization from data library.
Name of key for data library report.
Search data library report based on search criteria in options.
Name of key for data library report.
SearchOptions
.
Generated using TypeDoc
Retrieve data from data library.
{TypeError} when
reportKey
is missing.Getting data library report data from within your skill code
// Ensure you import DataLibraryPowers import { DataLibraryPowers } from "@andi/powers"; // getting data library report rows assuming that data library report has these fields as header type MyRow = { id: string; city: string; zip: string; }; const rows = await DataLibraryPowers.get<MyRow>("my-test-report-key"); // access first row const id = rows[0].id; // get data library report rows as dynamic type and then refer a particular column that may have space in it's name const rows = await DataLibraryPowers.get<any>("my-test-report-key"); * // access first row const data = rows[0]["my column name"];