使用Moongose和GraphQL保存实体后数据为空

时间:2017-11-03 03:53:10

标签: node.js mongodb mongoose graphql graphql-js

使用mongoose和graphql保存实体时会发生以下情况:

保存的第一种方法:

create(budgetProps){
   const budget = new Budget(budgetProps);
   return budget.save();
}

结果如下:

{
  "data": {
    "addBudget": {
      "_id": "59fbdefaa7b0a81180dd2c9c",
      "tiempoAproximado": 2245.5,
      "User": {
        "name": null,
        "organization": null
      },
      "Vehicle": {
        "name": null,
        "type": null
      }
    }
  }
}

使用此方法:

create(budgetProps){
  const budget = new Budget(budgetProps);
  return budget.save().then((res)=>{
           Budget.findById(res._id)
              .populate('User')
              .populate('Vehicle')
              .exec((err, newBudget)=> {
                 return newBudget;
              });
        });
  },

我得到以下内容:

{
  "data": {
    "addBudget": null
  }
}

这是架构:

 const typeDefs = `
   scalar Date

   input UserInput {
      _id: ID,
      name: String,
      organization: String,
      phones: [String],
      emails: [String],
      type: String,
      password: String,
      percentaje: String
   }

   input VehicleDescriptionInput {
      es: String,
      en: String
   }

   input VehicleInput{
      _id: ID,
      name: String,
      passengers: Int,
      largeBags: Int,
      smallBags: Int,
      doors: Int,
      type: String,
      status: Boolean,
      imagesUrls: [String],
      description: VehicleDescriptionInput
   }

   input FinalTotalCostInput {
      es: String,
      en: String   
   }

   input BudgetTotalCostInput {
      es: String,
      en: String
   }

   input BudgetInput {
      finalTotalCost: FinalTotalCostInput,
      budgetTotalCost: BudgetTotalCostInput,
      destinoInicial: String,
      destinoFinal: String,
      tiempoAproximado: Float,
      distancia: Float,
      tollCost: Float,
      tolls: [String],
      budgetDate: Date,
      aprove: Boolean,
      User: UserInput,
      Vehicle: VehicleInput
   }

   type Mutation {
      addBudget(data: BudgetInput): Budget
   }
`;

这是解析器:

Mutation: {
  addBudget: (_, {data}) =>{
    return BudgetController.create(data);  
  }
},

最后这里是变量及其变量:

mutation addBudget($budget: BudgetInput) {
  addBudget(data: $budget) {
    _id
    User{
      name
      organization
    }
    Vehicle{
      name
      type
    }
  }
}

{
  "budget": {
    "finalTotalCost": {
      "es": "100 peso",
      "en": "10 dolars"
    },
    "budgetTotalCost": {
      "es": "80 peso",
      "en": "8 dolars"
    },
    "destinoInicial": "Queretaro",
    "destinoFinal": "Sonora",
    "tiempoAproximado": 2245.5,
    "distancia": 100.565,
    "tollCost": 20.5,
    "tolls": [
      "GDL",
      "Marina",
      "Culap",
      "Malageña"
    ],
    "budgetDate": "2017/07/21",
    "aprove": false,
    "User": {
      "_id": "59fbcc42aa82460924e5fbad"
    },
    "Vehicle": {
      "_id": "59fbcbe4aa82460924e5fbac"
    }
  }
}

实体正确存储在数据库中,当Console.log填充的搜索结果的结果正确时,我不明白发生了什么。

您可以在以下链接中找到整个应用:GitHub Repo

1 个答案:

答案 0 :(得分:3)

你正在混合Promise和回调。 exec()将返回一个Promise,但前提是没有任何参数传递给它。此外,您需要返回exec()返回的Promise。

return budget.save().then((res) => {
  return Budget.findById(res._id) // missing return here
    .populate('User')
    .populate('Vehicle')
    .exec() // don't need anything else
})

你可以多清理一下:

return budget.save()
  .then(res => Budget.findById(res._id)
    .populate('User')
    .populate('Vehicle')
    .exec())

如果您需要转换findById返回的结果,然后再将其转换为客户端:

return budget.save()
  .then(res => Budget.findById(res._id)
    .populate('User')
    .populate('Vehicle')
    .exec())
  .then(res => {
    res.foo = 'Foo'
    return res
  })