Graphql 无法在突变时创建属性"客户端突变 ID"错误?



这是我要执行的突变:

const GraphQLAddPlayerResponseMutation = mutationWithClientMutationId({
      name: 'AddPlayerResponse',
      inputFields: {
        cdx: { type: new GraphQLNonNull(GraphQLInt) },
      },
      mutateAndGetPayload: ({cdx}) => {
        var cdxAdded = addplayerResponse(cdx);
        console.log("cdxAdded = ",cdxAdded)
        return cdxAdded;
      }, // what u return on mutateAndGetPayload is available on outputFields
      outputFields: {
        playerResponse: {
          type: GraphQLInt,
          resolve: ({cdxAdded}) => {
            console.log("outputFields cdxAdded = ",cdxAdded)
            return cdxAdded
          },
        },
        viewer: {
          type: GraphQLUser,
          resolve: () => getViewer(),
        },
      },
    });

无法弄清楚代码有什么问题,它在mutateAndpayload上登录:

 mutateAndGetPayload: ({cdx}) => {
            var cdxAdded = addplayerResponse(cdx);
            console.log("cdxAdded = ",cdxAdded)
            return cdxAdded;
          },

,但我认为没有评估输出场,因为它没有在控制台中登录,我会收到此错误:

{
  "data": {
    "addPlayerResponse": null
  },
  "errors": [
    {
      "message": "Cannot create property 'clientMutationId' on number '3'",
      "locations": [
        {
          "line": 4,
          "column": 3
        }
      ],
      "path": [
        "addPlayerResponse"
      ]
    }
  ]
}

帮助?

return { cdxAdded };替换 return cdxAdded;(野生猜测)

最新更新