We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
DOCS • API • Database API
Get the list of tables.
database.tables(): Promise<Array<string>>;
Get the list of tables:
const tables = await database.tables(); console.log(tables); // ['table_1', 'table_2']