( relationshipId: Id, firstRowId: Id, relationshipsOrRelationshipsId?: RelationshipsOrRelationshipsId, )
| 1733 | ); |
| 1734 | |
| 1735 | export const useLinkedRowIds: typeof useLinkedRowIdsDecl = ( |
| 1736 | relationshipId: Id, |
| 1737 | firstRowId: Id, |
| 1738 | relationshipsOrRelationshipsId?: RelationshipsOrRelationshipsId, |
| 1739 | ): Ids => |
| 1740 | useListenable( |
| 1741 | LINKED + ROW_IDS, |
| 1742 | useRelationshipsOrRelationshipsById(relationshipsOrRelationshipsId), |
| 1743 | ReturnType.Array, |
| 1744 | [relationshipId, firstRowId], |
| 1745 | ); |
| 1746 | |
| 1747 | export const useRemoteRowIdListener: typeof useRemoteRowIdListenerDecl = ( |
| 1748 | relationshipId: IdOrNull, |
searching dependent graphs…