(relationshipCallback: RelationshipCallback)
| 180 | }; |
| 181 | |
| 182 | const forEachRelationship = (relationshipCallback: RelationshipCallback) => |
| 183 | forEachRelationshipImpl((relationshipId) => |
| 184 | relationshipCallback(relationshipId, (rowCallback) => |
| 185 | store.forEachRow(getLocalTableId(relationshipId), rowCallback), |
| 186 | ), |
| 187 | ); |
| 188 | |
| 189 | const delRelationshipDefinition = (relationshipId: Id): Relationships => { |
| 190 | mapSet(remoteTableIds, relationshipId); |
nothing calls this directly
no test coverage detected
searching dependent graphs…