在我的 redux-form onSubmit 中的一个组件中,我有以下内容:
const result = await helloSignup(values);
console.log(result);
helloSignup 正在按预期改变数据库,但const result
当前记录为undefined
为什么?
我的 HOC/突变 helloSignup:
export const HELLO_SIGNUP_MUTATION = gql`
mutation (
$email: String!
$code: String!
) {
signup(authProvider: {
emailAndCode: {
email: $email
code: $code
}
}) {
token
user {
id
}
}
}
`;
export default graphql(
HELLO_SIGNUP_MUTATION,
{
props: ({ mutate }) => ({
emailAndCodeSignup: async (variables) => {
const { data } = await mutate({ variables });
const { token } = data.signup;
},
}),
}
);
使用 GraphiQL,我可以看到我的 graphql 突变返回了所需的结果:
{
"data": {
"signup": {
"token": "xxx",
"user": {
"id": "16"
}
}
}
}
如果 GraphiQL 在变异后得到了想要的结果,为什么上面的控制台没有记录结果?