feat(core): Refactor data table update row to use filters (no-changelog) (#19092)

This commit is contained in:
Daria
2025-09-04 18:25:29 +03:00
committed by GitHub
parent 2f2672c551
commit ed6f60f52e
18 changed files with 1421 additions and 233 deletions

View File

@@ -175,7 +175,10 @@ export const updateDataStoreRowsApi = async (
'PATCH',
`/projects/${projectId}/data-tables/${dataStoreId}/rows`,
{
filter: { id: rowId },
filter: {
type: 'and',
filters: [{ columnName: 'id', condition: 'eq', value: rowId }],
},
data: rowData,
},
);