I am new to graphcool. How can i call a resolver function from react or frontend. I am using react-apollo library. Here is type definition: type SignupUserPayload {
id: ID!
token: String!
}
extend type Mutation {
signupUser(email: String!, password: String!, name: String!, dob: DateTime) : SignupUserPayload
} So, when i call the function from react, it does not works.