( relationshipId: MaybeGetter<Id>, localRowId: MaybeGetter<Id>, relationshipsOrRelationshipsId?: MaybeGetter<Relationships | Id | undefined>, )
| 829 | ); |
| 830 | |
| 831 | export const getRemoteRowId = ( |
| 832 | relationshipId: MaybeGetter<Id>, |
| 833 | localRowId: MaybeGetter<Id>, |
| 834 | relationshipsOrRelationshipsId?: MaybeGetter<Relationships | Id | undefined>, |
| 835 | ): {readonly current: Id | undefined} => |
| 836 | createListenable( |
| 837 | resolveRelationships(relationshipsOrRelationshipsId), |
| 838 | REMOTE_ROW_ID, |
| 839 | undefined, |
| 840 | () => [maybeGet(relationshipId), maybeGet(localRowId)], |
| 841 | ); |
| 842 | |
| 843 | export const getLocalRowIds = ( |
| 844 | relationshipId: MaybeGetter<Id>, |
nothing calls this directly
no test coverage detected
searching dependent graphs…