Categorygithub.com/AndriyKalashnykov/gqlgen-graphql-tutorial
repositorypackage
0.0.0-20241123052702-5eb4a613c94f
Repository: https://github.com/andriykalashnykov/gqlgen-graphql-tutorial.git
Documentation: pkg.go.dev

# Packages

No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author

# README

gqlgen-graphql-tutorial

Mutations

register

xdg-open http://localhost:8080/
mutation register {
  register(
    input: {
      username: "user1", 
      email: "[email protected]", 
      password: "user1234567890!", 
      confirmPassword: "user1234567890!", 
      firstName: "User", 
      lastName: "One"}
  ) {
    authToken {
      accessToken
    }
  }
}

expected result:

{
  "data": {
    "register": {
      "authToken": {
        "accessToken": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE2NjU0NDQ3NzYsImp0aSI6IjIiLCJpYXQiOjE2NjQ4Mzk5NzYsImlzcyI6Im1lZXRtZXVwIn0.erk1xgejBMJd2k0DNQZEZ-SzN6RxO6U44Jz_75zHmzk"
      }
    }
  }
}

References