5

我有这个工作正常的简单突变

    type Mutation {
    addJob(
        url: String!
        description: String!
        position: String!
        company: String!
        date: DateTime!
        tags: [String!]!
    ): Job
}

突变解析器

    function addJob(parent, args, context, info) {

    console.log('Tags => ', args.tags)
    // const userId = getUserId(context)
    return context.db.mutation.createJob(
        {
            data: {
                position: args.position,
                componay: args.company,
                date: args.date,
                url: args.url,
                description: args.description,
                tags: args.tags
            }
        },
        info
    )
}

但是,一旦我尝试将字符串(标签)数组放在上面

Error: Variable "$_v0_data" got invalid value { ... , tags: ["devops", "aws"] }; Field "0" is not defined by type JobCreatetagsInput at value.tags.

如果我为突变中的标签分配了一个空数组,则没有问题,但是如果我输入一个字符串值 ["DevOps"] 例如我得到错误

4

1 回答 1

4

问题显然出在解析器函数中,正如我在这里发现的那样,我必须在 set 参数中的对象内分配标签列表,如下面的代码

function addJob(parent, args, context, info) {
    return context.db.mutation.createJob(
        {
            data: {
                position: args.position,
                componay: args.company,
                date: args.date,
                url: args.url,
                description: args.description,
                tags: { set: args.tags }
            }
        },
        info
    )
}
于 2018-11-09T12:03:37.580 回答