(exp, options, algorithm)
| 197 | } |
| 198 | |
| 199 | _withGraph(exp, options, algorithm) { |
| 200 | const eagerOp = ensureEagerOperation(this, algorithm); |
| 201 | const parsedExp = parseRelationExpression(this.modelClass(), exp); |
| 202 | |
| 203 | eagerOp.expression = eagerOp.expression.merge(parsedExp); |
| 204 | eagerOp.graphOptions = { ...eagerOp.graphOptions, ...options }; |
| 205 | |
| 206 | checkEager(this); |
| 207 | return this; |
| 208 | } |
| 209 | |
| 210 | allowGraph(exp) { |
| 211 | const currentExpr = this._allowedGraphExpression || RelationExpression.create(); |
no test coverage detected