userSignup.graphql 131 B

12345678
  1. mutation userSignup($input: UserSignupInput!) {
  2. userSignup(input: $input) {
  3. success
  4. errors {
  5. ...errors
  6. }
  7. }
  8. }