Skip to content

Instantly share code, notes, and snippets.

@joaquinacuna
Created November 3, 2020 20:55
Embed
What would you like to do?
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