({indexesId}: {readonly indexesId?: string})
| 531 | ); |
| 532 | |
| 533 | const ContextIndexesChild = ({indexesId}: {readonly indexesId?: string}) => ( |
| 534 | <> |
| 535 | <IndexView indexes={indexesId} indexId="i1" /> |
| 536 | {JSON.stringify(useSliceIds('i1', indexesId))} |
| 537 | <SliceView indexes={indexesId} indexId="i1" sliceId="1" /> |
| 538 | {JSON.stringify(useSliceRowIds('i1', '1', indexesId))} |
| 539 | </> |
| 540 | ); |
| 541 | |
| 542 | const ContextRelationships = ({ |
| 543 | relationships, |
nothing calls this directly
no test coverage detected
searching dependent graphs…