如何为同一父对象中的嵌套对象或对象列表定义GraphQLObjectType

时间:2018-05-01 13:12:45

标签: node.js mongoose graphql graphql-js

对于我的MongoDB对象,我有一个架构,其中有很多嵌套数据。

然而,我在GraphQL中完美地实现了查询以获取数据,但我无法获取嵌套数据,因为我无法定义类型。

fields() {
        return {
            name: {
                type: GraphQLString,
                description: 'Name of the person'
            },
            age: {
                type: GraphQLString,
                description: 'Age'
            },
            documents: { // what to do here
                type: new GraphQLList(),
                description: 'All documents for the person'
            }
       }
}

原始数据是这样的。

{
    "_id" : ObjectId("5ae1da5e4f00b5eee4ab84ee"),
    "name" : "Indira Gandhi International Airport",
    "age" : 54,
    "documents" : [
        {
             "doc_name" : "personal card",
             "doc_url" : "http://",
             "status" : true
        },
        {
             "doc_name" : "bank card",
             "doc_url" : "http://",
             "status" : true
        }
     ],
    "latitude" : "",
    "longitude" : "",
    "timezone" : "Asia/kolkata"
    .......
}

我是graphQL的新手,请帮忙。

1 个答案:

答案 0 :(得分:4)

我相信你在这里要做的就是让你的文件字段成为一份文件清单。为此,您需要创建一个"文档" GraphQLObjectType在您的文档字段中传入new GraphQLList()。像这样:

const DocumentType = new GraphQLObjectType({
  name: 'DocumentType',
  fields: {
    doc_name: {
      type: GraphQLString
    },
    doc_url: {
      type: GraphQLString
    },
    status: {
      type: GraphQLBoolean
  }
});

然后,一旦你创建了它,无论是在同一个文件中(或在不同的文件中并且必然导入)具有正确的依赖关系,你可以将它插入上面发布的代码中,如下所示:

fields() {
        return {
            name: {
                type: GraphQLString,
                description: 'Name of the person'
            },
            age: {
                type: GraphQLString,
                description: 'Age'
            },
            documents: {
                type: new GraphQLList(DocumentType),
                description: 'All documents for the person'
            }
       }
}  

我希望这会有所帮助。