当尝试使用刚从auth0请求收到idToken的createUser变异创建新用户时,我收到以下错误:
{
"data": null,
"errors": [{
"message": "Variable '$input_0' expected value of type 'SignupUserInput!' but got: {\"authProvider\":{\"auth0\":{\"idToken\":\"__idToken_Recieved_From_auth0_request__"}},\"clientMutationId\":\"0\"}. Reason: [in field 'name'] Expected non-null value, found null. (line 1, column 29):\nmutation CreateUserMutation($input_0:SignupUserInput!) {\n ^",
"locations": [{
"line": 1,
"column": 29
}]
}]
}
有什么建议吗?
答案 0 :(得分:2)
您的用户模型看起来像是必需的名称字段。如果是这种情况,那么您还需要将其添加到变异中。