(exp)
| 208 | } |
| 209 | |
| 210 | allowGraph(exp) { |
| 211 | const currentExpr = this._allowedGraphExpression || RelationExpression.create(); |
| 212 | |
| 213 | this._allowedGraphExpression = currentExpr.merge( |
| 214 | parseRelationExpression(this.modelClass(), exp), |
| 215 | ); |
| 216 | |
| 217 | checkEager(this); |
| 218 | return this; |
| 219 | } |
| 220 | |
| 221 | allowedGraphExpression() { |
| 222 | return this._allowedGraphExpression; |
no test coverage detected