Skip to content

Instantly share code, notes, and snippets.

@joaquinacuna
Created November 3, 2020 20:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joaquinacuna/bae2d3979b7ab26c6757df0ae5f3be30 to your computer and use it in GitHub Desktop.
Save joaquinacuna/bae2d3979b7ab26c6757df0ae5f3be30 to your computer and use it in GitHub Desktop.
Query mutation to register a new user
class QueryMutation {
String register(String email, String user, String password){
return """
mutation {
register(
email: "$email",
username: "$user",
password1: "$password",
password2: "$password",
) {
success,
errors,
token,
refreshToken
}
}
""";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment