如何在不使用_id引用的情况下在GraphqQL列表中获取模型的填充值?

时间:2018-12-03 12:28:58

标签: node.js mongodb graphql mern express-graphql

我有一个用户模型,其中包含一些字段,并引用了“技能”模型。

模型如下所示

1.Users.js(用户模型)

 const mongoose = require('mongoose');
 const Schema = mongoose.Schema;

 const UsersSchema = new Scheam({
     name: { type : String },
     email: { type : String },
     address: { type : String },

     Skills: [{ type: mongoose.Schema.Types.ObjectId, ref: 'Skills' }],
 })

 module.exports = mongoose.model('Users', UsersSchema);

2。技能模型

const mongoose = require('mongoose')
const Schema = mongoose.Schema;

const SkillsSchema = new Schema({
   name : { type: String },
});

module.exports = mongoose.model('Skills', SkillsSchema);

我正在使用技能选择下拉菜单创建新用户,该下拉菜单存储用户模型中技能的ID。

并通过在node js应用程序中填充Users模型来获得技能。

  export function getUser(req, res) {
     console.log('getUser');
     console.log('req.body',req.body);
     Users.findOne({_id: req.body.user_id}).populate('skills').exec(function(err, usr_doc){ 
       if(err) {
          res.json({
             status: 401,
             message: 'something went wrong!',
             err: err,
          });
       } else if (!err && usr_doc != null) {
           res.json({
               status: 200,
               message: 'User details found!',
               data: {_id: usr_doc._id, skills: usr_doc.skills,name: usr_doc.name,token: usr_doc.token},
           })
       }
     })//Users.findOne end
  }

上面的代码对于正常的REST API正常工作。

在这里,我尝试使用Node.js中express-graphql的GraphQL服务器创建相同的api。

代码看起来像这样。

3.Schema.js

 const graphql = require('graphql');
 const Users = require('../models/Users');
 const Skills = require('../models/Skills');

 const { 
    GraphQLObjectType,
    GraphQLInt,
    GraphQLFloat,
    GraphQLString, 
    GraphQLSchema,
    GraphQLID,
    GraphQLList,
    GraphQLNonNull,
    GraphQLBoolean,
    GraphQLObject
 } = graphql;

 const UsersType = new GraphQLObjectType ({
       name: 'Users',
       fields: () => ({
            id: {type: GraphQLID},
            name: { type : GraphQLString },
            email: { type : GraphQLString },
            **skills: {
                type: new GraphQLList(SkillsType),
                resolve(parent, args){
                  //Here I need to know how to get the skills name of the users
                }
            }**
       })

   const SkillsType = new GraphQLObjectType({
       name: 'Skills',
       fields: () => ({
          name: { type : GraphQLString },
       })
   })    

目前,我在技能模型中未使用任何参考ID,仅使用姓名。我想获取用户的技能名称。

如果我使用以下内容,我将获得所有技能名称,而不是用户特定的或填充的技能名称。

   skills : {
     type: new GraphQLList(SkillsType),
        resolve(parent, args){
            return Skills.find({})
        } 

请提供与此有关的任何建议。

如果需要,我可以提供更多信息。

1 个答案:

答案 0 :(得分:1)

要获得用户的skills,而不是Skills.find({})会返回技能集中存在的所有文档,请在其中添加一个parent对象的条件。

parent对象,在此处的父字段中包含解析程序的结果。因此,儿童分解器的技能可以写成:

 skills: {
     type: new GraphQLList(SkillsType),
     resolve(parent, args) {
         return await Skills.find({"_id": {$in: parent.skills} }) }
 }