Get NoSQL Table MetadataAdmin Scope
You can refer to the required table using its Table ID or its name.
Get Table Metadata With Table ID
You can pass the Table ID to the getTable() SDK method to retrieve the NoSQL table’s metadata.
The nosql reference used in the code snippets below is the component instance created to perform these operations.
// Create a NoSQL instance
const nosql = new NoSQL();
// Get table metadata using the Table ID
const tableA = await nosql.getTable('124567890');
Get Table Metadata With Table Name
You can pass the name of the required table to the getTable() SDK method to retrieve the NoSQL table’s metadata.
The nosql reference used in the code snippets below is the component instance created to perform these operations.
// Create a NoSQL instance
const nosql = new NoSQL();
// Get table metadata using the table name
const tableB = await nosql.getTable('EmpTable');
Get Metadata of All Tables
You can use the getAllTable() SDK method to get the metadata of all the tables present in your project.
const nosql = new NoSQL();
// Get metadata of all tables
const allTables = await nosql.getAllTable();
Last Updated 2026-09-09 16:15:38 +0530 IST
Yes
No
Send your feedback to us