Ivan Asmer 5 年之前
父节点
当前提交
56ee6226ac
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      expand.js

+ 1 - 1
expand.js

@@ -29,7 +29,7 @@ function mmExpandSchema(gqlSchema){
                     console.log('array',nestedTypeName)
 
                     entity[fieldName] = []
-                    for (let nestedArg of value){
+                    if (value) for (let nestedArg of value){
                         const nestedEntity = await argToSavables(nestedArg, nestedTypeName, Savable)
                         entity[fieldName].push(nestedEntity)
                     }