GraphQL implementation with Golang
- Go 1.12
- Dep
dep ensure -v
go run main.go
curl --location --request POST 'http://localhost:8080/graphql' \
--header 'Content-Type: application/graphql' \
--data-raw '{"query":"query{user(id: 1){id,name,age}}"}'
go test -v ./...