(
relationshipId: Id,
localRowId: Id,
)
| 196 | mapGet(remoteTableIds, relationshipId) as Id; |
| 197 | |
| 198 | const getRemoteRowId = ( |
| 199 | relationshipId: Id, |
| 200 | localRowId: Id, |
| 201 | ): Id | undefined => |
| 202 | mapGet((getRelationship(relationshipId) as IdMap<Id>[])?.[0], localRowId); |
| 203 | |
| 204 | const getLocalRowIds = (relationshipId: Id, remoteRowId: Id): Ids => |
| 205 | collValues( |
nothing calls this directly
no test coverage detected
searching dependent graphs…