语法错误:期望$,找到名称" authprovider"

时间:2018-01-30 11:27:05

标签: react-native apollo-client graphcool

我正在运行示例应用。我在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

这是我的截图:   enter image description here

0 个答案:

没有答案