我正在运行示例应用。我在graphcool中调用了createUser的变异。但我得到的错误如下面的截图。 这是我的代码
this.props
.createUser({
variables: {
email: this.state.email,
password: this.state.password
}
})
.then(({ data }) => {
alert(JSON.stringify(data))
})
.catch(error => {
alert('There is a problem ' + error)
})
const CREATE_USER = gql`
mutation createUser(authProvider:{email:{$email: String, $password: String}}) {
createUser(email: $email, password: $password) {
id
email
password
}
}
`
const RegisterData = compose(graphql(CREATE_USER, { name: 'createUser' }))(Register)
导出默认RegisterData