Last active
July 21, 2019 20:25
-
-
Save nastyakitsune/01b88bed811880dc7b200c6511a24298 to your computer and use it in GitHub Desktop.
Parameters for GraphQL mutations
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // standard registration input | |
| input StandardRegistrationInput { | |
| email: String! | |
| password: String! | |
| passwordConfirmed: String! | |
| userName: String! | |
| avatarUrl: String | |
| } | |
| // social registration input | |
| input SocialRegistrationInput { | |
| token: String! | |
| tokenProvider: String! | |
| } | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment