Skip to content

thealmarques/go-graphql-gqlgen-jwt

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GraphQL - JWT integration in a generated gqlgen project

This project serves as a template on how is it possible to integrate a JWT token validation in a generated graphql project using gqlgen.

Architecture

Usage

Run the following command to start the database service

docker-compose up --build -d

After the database is up and running you can start the GraphQL server using

go run server.go

Queries examples

mutation createUser{
  createUser(
    input:{
      name: "Andre",
      email: "andre@gmail.com",
      password: "andre"
    }
  )
  {
    id
    name
  }
}
mutation login{
  login(email: "johnny@gmail.com", password: "john0"){
    token,
    expired_at
  }
}
query users{
  users {
    name,
    id,
    email,
    created_at,
    updated_at
  }
}

Note that if you want to access users query you have to provide an authorization header (after login is completed and you copied the JWT token)

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

About

Golang authentication using GraphQL

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages