( relationshipId: Id, remoteRowId: Id, relationshipsOrRelationshipsId?: RelationshipsOrRelationshipsId, )
| 1721 | ); |
| 1722 | |
| 1723 | export const useLocalRowIds: typeof useLocalRowIdsDecl = ( |
| 1724 | relationshipId: Id, |
| 1725 | remoteRowId: Id, |
| 1726 | relationshipsOrRelationshipsId?: RelationshipsOrRelationshipsId, |
| 1727 | ): Ids => |
| 1728 | useListenable( |
| 1729 | LOCAL + ROW_IDS, |
| 1730 | useRelationshipsOrRelationshipsById(relationshipsOrRelationshipsId), |
| 1731 | ReturnType.Array, |
| 1732 | [relationshipId, remoteRowId], |
| 1733 | ); |
| 1734 | |
| 1735 | export const useLinkedRowIds: typeof useLinkedRowIdsDecl = ( |
| 1736 | relationshipId: Id, |
searching dependent graphs…