( relationshipId: MaybeGetter<Id>, remoteRowId: MaybeGetter<Id>, relationshipsOrRelationshipsId?: MaybeGetter<Relationships | Id | undefined>, )
| 841 | ); |
| 842 | |
| 843 | export const getLocalRowIds = ( |
| 844 | relationshipId: MaybeGetter<Id>, |
| 845 | remoteRowId: MaybeGetter<Id>, |
| 846 | relationshipsOrRelationshipsId?: MaybeGetter<Relationships | Id | undefined>, |
| 847 | ): {readonly current: Ids} => |
| 848 | createListenable( |
| 849 | resolveRelationships(relationshipsOrRelationshipsId), |
| 850 | LOCAL + ROW_IDS, |
| 851 | EMPTY_ARR, |
| 852 | () => [maybeGet(relationshipId), maybeGet(remoteRowId)], |
| 853 | ); |
| 854 | |
| 855 | export const getLinkedRowIds = ( |
| 856 | relationshipId: MaybeGetter<Id>, |
nothing calls this directly
no test coverage detected
searching dependent graphs…