(relationshipId: Id, firstRowId: Id)
| 210 | ); |
| 211 | |
| 212 | const getLinkedRowIds = (relationshipId: Id, firstRowId: Id): Ids => |
| 213 | isUndefined(getRelationship(relationshipId)) |
| 214 | ? [firstRowId] |
| 215 | : collValues(getLinkedRowIdsCache(relationshipId, firstRowId, true)); |
| 216 | |
| 217 | const addRemoteRowIdListener = ( |
| 218 | relationshipId: IdOrNull, |
nothing calls this directly
no test coverage detected
searching dependent graphs…