({
mode,
store,
metrics,
indexes,
relationships,
queries,
checkpoints,
tableId,
rowId,
cellId,
valueId,
metricId,
indexId,
sliceId,
relationshipId,
localRowId,
remoteRowId,
firstRowId,
queryId,
descending,
offset,
limit,
}: {
readonly mode: string;
readonly store: Store;
readonly metrics?: Metrics;
readonly indexes?: Indexes;
readonly relationships?: Relationships;
readonly queries?: Queries;
readonly checkpoints?: Checkpoints;
readonly persister?: AnyPersister;
readonly synchronizer?: Synchronizer;
readonly tableId: Id;
readonly rowId: Id;
readonly cellId: Id;
readonly valueId: Id;
readonly metricId: Id;
readonly indexId: Id;
readonly sliceId: Id;
readonly relationshipId: Id;
readonly localRowId: Id;
readonly remoteRowId: Id;
readonly firstRowId: Id;
readonly queryId: Id;
readonly descending: boolean;
readonly offset: number;
readonly limit: number;
})
| 240 | }; |
| 241 | |
| 242 | const Reader = ({ |
| 243 | mode, |
| 244 | store, |
| 245 | metrics, |
| 246 | indexes, |
| 247 | relationships, |
| 248 | queries, |
| 249 | checkpoints, |
| 250 | tableId, |
| 251 | rowId, |
| 252 | cellId, |
| 253 | valueId, |
| 254 | metricId, |
| 255 | indexId, |
| 256 | sliceId, |
| 257 | relationshipId, |
| 258 | localRowId, |
| 259 | remoteRowId, |
| 260 | firstRowId, |
| 261 | queryId, |
| 262 | descending, |
| 263 | offset, |
| 264 | limit, |
| 265 | }: { |
| 266 | readonly mode: string; |
| 267 | readonly store: Store; |
| 268 | readonly metrics?: Metrics; |
| 269 | readonly indexes?: Indexes; |
| 270 | readonly relationships?: Relationships; |
| 271 | readonly queries?: Queries; |
| 272 | readonly checkpoints?: Checkpoints; |
| 273 | readonly persister?: AnyPersister; |
| 274 | readonly synchronizer?: Synchronizer; |
| 275 | readonly tableId: Id; |
| 276 | readonly rowId: Id; |
| 277 | readonly cellId: Id; |
| 278 | readonly valueId: Id; |
| 279 | readonly metricId: Id; |
| 280 | readonly indexId: Id; |
| 281 | readonly sliceId: Id; |
| 282 | readonly relationshipId: Id; |
| 283 | readonly localRowId: Id; |
| 284 | readonly remoteRowId: Id; |
| 285 | readonly firstRowId: Id; |
| 286 | readonly queryId: Id; |
| 287 | readonly descending: boolean; |
| 288 | readonly offset: number; |
| 289 | readonly limit: number; |
| 290 | }) => { |
| 291 | const hasTables = useHasTables(store); |
| 292 | const tables = useTables(store); |
| 293 | const tableIds = useTableIds(store); |
| 294 | const hasTable = useHasTable(tableId, store); |
| 295 | const table = useTable(tableId, store); |
| 296 | const tableCellIds = useTableCellIds(tableId, store); |
| 297 | const hasTableCell = useHasTableCell(tableId, cellId, store); |
| 298 | const rowCount = useRowCount(tableId, store); |
| 299 | const rowIds = useRowIds(tableId, store); |
nothing calls this directly
no test coverage detected
searching dependent graphs…