MCPcopy Index your code
hub / github.com/simstudioai/sim / tableRowsParamsKey

Function tableRowsParamsKey

apps/sim/hooks/queries/tables.ts:401–407  ·  view source on GitHub ↗
({
  pageSize,
  filter,
  sort,
}: Pick<InfiniteTableRowsParams, 'pageSize' | 'filter' | 'sort'>)

Source from the content-addressed store, hash-verified

399}
400
401export function tableRowsParamsKey({
402 pageSize,
403 filter,
404 sort,
405}: Pick<InfiniteTableRowsParams, 'pageSize' | 'filter' | 'sort'>): string {
406 return JSON.stringify({ pageSize, filter: filter ?? null, sort: sort ?? null })
407}
408
409interface FindTableRowsParams {
410 workspaceId: string

Callers 4

tables.test.tsFile · 0.90
tableRowsInfiniteOptionsFunction · 0.85
useDeleteTableRowsAsyncFunction · 0.85
useCancelTableRunsFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected