(modelsOrObjects, opt)
| 609 | } |
| 610 | |
| 611 | insertGraph(modelsOrObjects, opt) { |
| 612 | return writeOperation(this, () => { |
| 613 | const insertOperation = this._insertOperationFactory(this); |
| 614 | |
| 615 | const insertGraphOperation = new InsertGraphOperation('insertGraph', { |
| 616 | delegate: insertOperation, |
| 617 | opt, |
| 618 | }); |
| 619 | |
| 620 | this.addOperation(insertGraphOperation, [modelsOrObjects]); |
| 621 | }); |
| 622 | } |
| 623 | |
| 624 | insertGraphAndFetch(modelsOrObjects, opt) { |
| 625 | return writeOperation(this, () => { |
no test coverage detected