Ver código fonte

delete fixes

Ivan Asmer 5 anos atrás
pai
commit
dabb3f17d5
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1 1
      expand.js

+ 1 - 1
expand.js

@@ -125,7 +125,7 @@ function mmExpandSchema(gqlSchema){
                             }
                             let entity = await Savable.m[outputTypeName].findOne({_id: ObjectID(arg._id)})
                             if (entity){
-                                let copy = {...record}
+                                let copy = {...entity}
                                 await entity.delete()
                                 return copy;
                             }