|
@@ -104,6 +104,11 @@ export default async function createModels2(gql, config={create: 'Upsert', updat
|
|
}
|
|
}
|
|
|
|
|
|
const identityMap = {}
|
|
const identityMap = {}
|
|
|
|
+ const identityMapInvalidate = (exclude) => {
|
|
|
|
+ for (let [id, entity] of Object.entries(identityMap)){
|
|
|
|
+ entity.empty = true;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
let identityMapHits = 0
|
|
let identityMapHits = 0
|
|
let totalObjects = 0
|
|
let totalObjects = 0
|
|
|
|
|
|
@@ -193,36 +198,45 @@ export default async function createModels2(gql, config={create: 'Upsert', updat
|
|
return this.input.inputFields
|
|
return this.input.inputFields
|
|
}
|
|
}
|
|
|
|
|
|
- async save(){
|
|
|
|
- if (this.empty) throw new ReferenceError('Cannot save empty object')
|
|
|
|
|
|
+ get mutationData(){
|
|
const data = {}
|
|
const data = {}
|
|
input.inputFields.forEach(({name, type:{ ofType, kind, name:otherName}}) => {
|
|
input.inputFields.forEach(({name, type:{ ofType, kind, name:otherName}}) => {
|
|
({SCALAR(){
|
|
({SCALAR(){
|
|
|
|
+ //if (this.constructor.name.startsWith('GoodOptionValue')) debugger;
|
|
if (this[name]) data[name] = this[name]
|
|
if (this[name]) data[name] = this[name]
|
|
},
|
|
},
|
|
LIST(){
|
|
LIST(){
|
|
const otherType = inInputs(ofType.name)
|
|
const otherType = inInputs(ofType.name)
|
|
if (otherType && this[name] && this[name] instanceof Array)
|
|
if (otherType && this[name] && this[name] instanceof Array)
|
|
- data[name] = this[name].map(otherEntity => (otherEntity._id ? {_id: otherEntity._id} : otherEntity))
|
|
|
|
|
|
+ data[name] = this[name].map(otherEntity => (otherEntity._id ? {_id: otherEntity._id} : (otherEntity.mutationData || otherEntity)))
|
|
},
|
|
},
|
|
INPUT_OBJECT(){
|
|
INPUT_OBJECT(){
|
|
const otherType = inInputs(otherName)
|
|
const otherType = inInputs(otherName)
|
|
if (otherType && this[name] && typeof this[name] === 'object')
|
|
if (otherType && this[name] && typeof this[name] === 'object')
|
|
- data[name] = (this[name]._id ? {_id: this[name]._id} : this[name])
|
|
|
|
|
|
+ data[name] = (this[name]._id ? {_id: this[name]._id} : (this[name].mutationData || this[name]))
|
|
else data[name] = this[name]
|
|
else data[name] = this[name]
|
|
}})[kind].call(this)
|
|
}})[kind].call(this)
|
|
})
|
|
})
|
|
|
|
+ return data
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+
|
|
|
|
+ async save(){
|
|
|
|
+ if (this.empty) throw new ReferenceError('Cannot save empty object')
|
|
const gqlQuery = `
|
|
const gqlQuery = `
|
|
mutation ${name}Upsert($data: ${input.name}){
|
|
mutation ${name}Upsert($data: ${input.name}){
|
|
${name}Upsert(${name.toLowerCase()}: $data)
|
|
${name}Upsert(${name.toLowerCase()}: $data)
|
|
${projectionBuilder(type)}
|
|
${projectionBuilder(type)}
|
|
- }
|
|
|
|
- `
|
|
|
|
- let result = await gql.request(gqlQuery, {data})
|
|
|
|
|
|
+ }`
|
|
|
|
+
|
|
|
|
+ let result = await gql.request(gqlQuery, {data: this.mutationData})
|
|
if (result._id && !(result._id in identityMap)){
|
|
if (result._id && !(result._id in identityMap)){
|
|
identityMap[result._id] = this
|
|
identityMap[result._id] = this
|
|
}
|
|
}
|
|
|
|
+ identityMapInvalidate()
|
|
this.populate(result)
|
|
this.populate(result)
|
|
|
|
+ this.empty = false
|
|
}
|
|
}
|
|
|
|
|
|
static invalidate(except=[]){
|
|
static invalidate(except=[]){
|