( relationshipId: MaybeGetter<Id>, firstRowId: MaybeGetter<Id>, relationshipsOrRelationshipsId?: MaybeGetter<Relationships | Id | undefined>, )
| 853 | ); |
| 854 | |
| 855 | export const getLinkedRowIds = ( |
| 856 | relationshipId: MaybeGetter<Id>, |
| 857 | firstRowId: MaybeGetter<Id>, |
| 858 | relationshipsOrRelationshipsId?: MaybeGetter<Relationships | Id | undefined>, |
| 859 | ): {readonly current: Ids} => |
| 860 | createListenable( |
| 861 | resolveRelationships(relationshipsOrRelationshipsId), |
| 862 | LINKED + ROW_IDS, |
| 863 | EMPTY_ARR, |
| 864 | () => [maybeGet(relationshipId), maybeGet(firstRowId)], |
| 865 | ); |
| 866 | |
| 867 | export const getRelationshipsStoreTableIds = ( |
| 868 | relationshipsOrId: MaybeGetter<Relationships | Id | undefined>, |
nothing calls this directly
no test coverage detected
searching dependent graphs…