2016-11-09 95 views
1

當試圖創建新的用戶具有剛剛從Auth0請求接收的idToken中的createUser突變,我收到以下錯誤:400錯誤

{ 
    "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 
    }] 
    }] 
} 

任何建議?

回答

2

它看起來像你的用戶模型都需要有一個名稱字段。如果是這樣的話,那麼你還需要將它添加到突變。

+0

稀釋是。非常感謝! – Tapjay