($models, expression, options = {})
| 630 | } |
| 631 | |
| 632 | static fetchGraph($models, expression, options = {}) { |
| 633 | return this.query(options.transaction) |
| 634 | .resolve(this.ensureModelArray($models)) |
| 635 | .findOptions({ dontCallFindHooks: true }) |
| 636 | .withGraphFetched(expression, options) |
| 637 | .runAfter((models) => (Array.isArray($models) ? models : models[0])); |
| 638 | } |
| 639 | |
| 640 | static traverse(...args) { |
| 641 | const { traverser, models, filterConstructor } = getTraverseArgs(...args); |
nothing calls this directly
no test coverage detected