createUser update相关字段 - 理解关系

时间:2017-02-09 19:46:10

标签: graphql graphcool

我需要在创建时设置相关字段的值,这可能吗?

详细说明: 我有User模型,其字段为:email, displayname。 我有一个Verify模型,其字段为:code, action

我在这两个模型之间创建了一个关系:

我想createUser并同时设置codeaction的相关字段。我试过这个:

mutation {
  createUser
  (
    email:"noit@mail.com",
    displayname:"noit",
    password:"123",
    code: "this is a code",
    action: "REGISTER"
  ) {
    id
  }
}

这失败了:

{
  "data": null,
  "errors": [
    {
      "message": "Unknown argument 'code' on field 'createUser' of type 'Mutation'. (line 2, column 76):\n  createUser(email: \"noit@mail.com\", displayname: \"noit\", password: \"123\", code: \"this is a code\", action: \"REGISTER\") {\n                                                                           ^",
      "locations": [
        {
          "line": 2,
          "column": 76
        }
      ]
    },
    {
      "message": "Unknown argument 'action' on field 'createUser' of type 'Mutation'. (line 2, column 100):\n  createUser(email: \"noit@mail.com\", displayname: \"noit\", password: \"123\", code: \"this is a code\", action: \"REGISTER\") {\n                                                                                                   ^",
      "locations": [
        {
          "line": 2,
          "column": 100
        }
      ]
    }
  ]
}

2 个答案:

答案 0 :(得分:4)

我们专门设计Graphcool API来处理这样的案例尽可能简单,你可以这样做:

mutation { 
  createUser (
    email:"noit@mail.com",
    displayname:"noit",
    password:"123",
    blahVerify: {
      code: "this is a code",
      action: "REGISTER"  
    }) {
    id
    blahVerify {
      id  
    } 
  }
}

注意嵌套的blahVerify对象参数。

This answer to a similar question详细介绍了一下,还展示了如何使用GraphQL变量从Apollo Client发送嵌套突变。

作为旁注,根据Verify节点的action的不同可能值,您可能希望使用枚举字段而不是字符串。您可以阅读有关枚举字段in the documentation的更多信息。

答案 1 :(得分:0)

您可以在scaphold.io上执行此操作。 Logic系统不仅包括变异回调。您可以在突变之前触发函数以在将输入保存到数据库之前验证/清除输入,之后管理将在相同的突变有效负载中返回的此类连接,以及用于启动长期任务的异步(如变异回调)。您甚至可以将函数组合在一起,通过一系列函数调用来传递元数据。