"Edit multiple rows"

This commit is contained in:
Pedro Silva 2022-12-28 15:46:01 +00:00
parent 296238ad1a
commit ce98bb884e
1 changed files with 2 additions and 2 deletions

View File

@ -127,7 +127,7 @@ describe("Internal API - Table Operations", () => {
await config.rows.add(<string>addColumnData._id, newRow) await config.rows.add(<string>addColumnData._id, newRow)
} }
//Search multiple rows //Search rows with pagination
const [allRowsResponse, allRowsJson] = await config.rows.searchMultiPage(<string>createdTableData._id, searchBody(<string>createdTableData.primaryDisplay)) const [allRowsResponse, allRowsJson] = await config.rows.searchMultiPage(<string>createdTableData._id, searchBody(<string>createdTableData.primaryDisplay))
//Delete Rows from table //Delete Rows from table
@ -135,7 +135,7 @@ describe("Internal API - Table Operations", () => {
rows: [allRowsJson], rows: [allRowsJson],
} }
const [deleteRowResponse, deleteRowData] = await config.rows.delete( const [deleteRowResponse, deleteRowData] = await config.rows.delete(
<string>addColumnData._id, <string>createdTableData._id,
rowToDelete rowToDelete
) )