(relationshipId, localRowId)
| 3973 | }; |
| 3974 | const getRemoteTableId = (relationshipId) => mapGet(remoteTableIds, relationshipId); |
| 3975 | const getRemoteRowId = (relationshipId, localRowId) => mapGet(getRelationship(relationshipId)?.[0], localRowId); |
| 3976 | const getLocalRowIds = (relationshipId, remoteRowId) => collValues(mapGet(getRelationship(relationshipId)?.[1], remoteRowId)); |
| 3977 | const getLinkedRowIds = (relationshipId, firstRowId) => isUndefined(getRelationship(relationshipId)) ? [firstRowId] : collValues(getLinkedRowIdsCache(relationshipId, firstRowId, true)); |
| 3978 | const addRemoteRowIdListener = (relationshipId, localRowId, listener) => addListener(listener, remoteRowIdListeners, [relationshipId, localRowId]); |
nothing calls this directly
no test coverage detected
searching dependent graphs…