https://github.com/ww24/graphql-tutorial
https://github.com/ww24/graphql-tutorial
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ww24/graphql-tutorial
- Owner: ww24
- Created: 2021-03-17T03:38:49.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2021-03-17T04:38:13.000Z (almost 5 years ago)
- Last Synced: 2025-04-03T23:13:22.521Z (9 months ago)
- Language: Go
- Size: 22.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# graphql-tutorial
## Requirements
- Go 1.16.x
## Start server
```
make run
```
## Directory structure
```
.
├── Makefile
├── README.md
├── cmd
│ └── schedule
│ ├── main.go
│ ├── server.go
│ ├── wire.go
│ └── wire_gen.go
├── domain
│ ├── repository
│ │ ├── schedule.go
│ │ └── user.go
│ └── service
│ ├── schedule.go
│ ├── service.go
│ └── user.go
├── go.mod
├── go.sum
├── gqlgen.yml
├── infra
│ └── db
│ ├── db.go
│ ├── schedule.go
│ └── user.go
└── presentation
└── graphql
├── dataloader
│ └── dataloader.go
├── generated
│ ├── federation.go
│ └── generated.go
├── model
│ ├── models_gen.go
│ └── user.go
├── resolver
│ ├── mutation.go
│ ├── query.go
│ ├── resolver.go
│ ├── schedule.go
│ └── user.go
└── schema
├── mutation.graphqls
├── query.graphqls
├── schedule.graphqls
└── user.graphqls
```