We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc1e8a1 commit acd966bCopy full SHA for acd966b
src/unit-of-work/op-result.js
@@ -47,7 +47,11 @@ export class OpResult {
47
}
48
49
isObjectRef() {
50
- return this.operationType === OperationType.CREATE || this.operationType === OperationType.UPDATE
+ return (
51
+ this.operationType === OperationType.CREATE ||
52
+ this.operationType === OperationType.UPDATE ||
53
+ this.operationType === OperationType.UPSERT
54
+ )
55
56
57
setOpResultId(opResultId) {
0 commit comments