( relationshipId: Id, localRowId: Id, relationshipsOrRelationshipsId?: RelationshipsOrRelationshipsId, )
| 1709 | ); |
| 1710 | |
| 1711 | export const useRemoteRowId: typeof useRemoteRowIdDecl = ( |
| 1712 | relationshipId: Id, |
| 1713 | localRowId: Id, |
| 1714 | relationshipsOrRelationshipsId?: RelationshipsOrRelationshipsId, |
| 1715 | ): Id | undefined => |
| 1716 | useListenable( |
| 1717 | REMOTE_ROW_ID, |
| 1718 | useRelationshipsOrRelationshipsById(relationshipsOrRelationshipsId), |
| 1719 | ReturnType.CellOrValue, |
| 1720 | [relationshipId, localRowId], |
| 1721 | ); |
| 1722 | |
| 1723 | export const useLocalRowIds: typeof useLocalRowIdsDecl = ( |
| 1724 | relationshipId: Id, |
searching dependent graphs…