( relationshipId: MaybeAccessor<Id>, remoteRowId: MaybeAccessor<Id>, relationshipsOrRelationshipsId?: MaybeRelationshipsOrRelationshipsId, )
| 1392 | ); |
| 1393 | |
| 1394 | export const useLocalRowIds = ( |
| 1395 | relationshipId: MaybeAccessor<Id>, |
| 1396 | remoteRowId: MaybeAccessor<Id>, |
| 1397 | relationshipsOrRelationshipsId?: MaybeRelationshipsOrRelationshipsId, |
| 1398 | ): Accessor<Ids> => |
| 1399 | useListenable( |
| 1400 | LOCAL + ROW_IDS, |
| 1401 | useRelationshipsOrRelationshipsById(relationshipsOrRelationshipsId), |
| 1402 | ReturnType.Array, |
| 1403 | [relationshipId, remoteRowId], |
| 1404 | ); |
| 1405 | |
| 1406 | export const useLinkedRowIds = ( |
| 1407 | relationshipId: MaybeAccessor<Id>, |
searching dependent graphs…