An open API service indexing awesome lists of open source software.

https://github.com/danny-yamamoto/go-gqlgen-sample

Try gqlgen.
https://github.com/danny-yamamoto/go-gqlgen-sample

go gqlgen graphql postgresql

Last synced: about 2 months ago
JSON representation

Try gqlgen.

Awesome Lists containing this project

README

        

# go-gqlgen-sample
Try gqlgen.

### Installation.
```bash
apt-get update
sudo apt-get install -y sqlite3
mv mygraphql.db mygraphql.db.back
./setup.sh
```

### SQLite
```bash
root ➜ /workspaces/go-gqlgen-sample (main) $ sqlite3 mygraphql.db
SQLite version 3.34.1 2021-01-20 14:10:07
sqlite> select * from users;
U_1|hsaki|
sqlite>
```