(relationshipId: Id, remoteRowId: Id)
| 202 | mapGet((getRelationship(relationshipId) as IdMap<Id>[])?.[0], localRowId); |
| 203 | |
| 204 | const getLocalRowIds = (relationshipId: Id, remoteRowId: Id): Ids => |
| 205 | collValues( |
| 206 | mapGet( |
| 207 | (getRelationship(relationshipId) as IdMap<IdSet>[])?.[1], |
| 208 | remoteRowId, |
| 209 | ), |
| 210 | ); |
| 211 | |
| 212 | const getLinkedRowIds = (relationshipId: Id, firstRowId: Id): Ids => |
| 213 | isUndefined(getRelationship(relationshipId)) |
nothing calls this directly
no test coverage detected
searching dependent graphs…