Delete a Row

Note: Ensure you have installed the required package to use this SDK method.

You can pass the ROWID of the required row to the deleteRow() SDK method to delete it from the table in Catalyst DataStore.

The table reference used in the below code snippets can either be a table instance or a table meta.

Info: You wont be able to delete multiple rows.
copy
// Use Table Meta Object to delete a single row using ROWID
const datastore = new Datastore();
const table = datastore.table('SampleTable');
const row = await table.deleteRow(1510000000109476);
console.log(row);

Last Updated 2026-07-02 14:51:41 +0530 IST