Browse Source

lazy save

Ivan Asmer 5 years ago
parent
commit
8422b3e9e7
1 changed files with 5 additions and 1 deletions
  1. 5 1
      expand.js

+ 5 - 1
expand.js

@@ -16,11 +16,14 @@ function mmExpandSchema(gqlSchema){
         const type = _typeMap[outputTypeName + 'Input']
         const fields = type.getFields()
 
+        let changed = false
+
         for(let [fieldName, value] of Object.entries(data)){
             let typeName = fields[fieldName].type.toString()
 
             if (!buildInTypes.includes(typeName)){
                 console.log('recursive', arg[fieldName], typeName)
+                changed = true
                 if (typeName[0] === '['){
                     const nestedTypeName = typeName.slice(1,-6)
                     console.log('array',nestedTypeName)
@@ -41,7 +44,8 @@ function mmExpandSchema(gqlSchema){
                 entity[fieldName] = value
             }
         }
-        return await entity.save()
+        changed && await entity.save()
+        return entity
     }