1
- # graphql-go [ ![ Sourcegraph] ( https://sourcegraph.com/github.com/graph-gophers /graphql-go/-/badge.svg )] ( https://sourcegraph.com/github.com/graph-gophers /graphql-go?badge ) [ ![ Build Status] ( https://graph-gophers.semaphoreci.com/badges/graphql-go/branches/master.svg?style=shields )] ( https://graph-gophers.semaphoreci.com/projects/graphql-go ) [ ![ GoDoc] ( https://godoc.org/github.com/graph-gophers /graphql-go?status.svg )] ( https://godoc.org/github.com/graph-gophers /graphql-go )
1
+ # graphql-go [ ![ Sourcegraph] ( https://sourcegraph.com/github.com/golangid /graphql-go/-/badge.svg )] ( https://sourcegraph.com/github.com/golangid /graphql-go?badge ) [ ![ Build Status] ( https://graph-gophers.semaphoreci.com/badges/graphql-go/branches/master.svg?style=shields )] ( https://graph-gophers.semaphoreci.com/projects/graphql-go ) [ ![ GoDoc] ( https://godoc.org/github.com/golangid /graphql-go?status.svg )] ( https://godoc.org/github.com/golangid /graphql-go )
2
2
3
3
<p align =" center " ><img src =" docs/img/logo.png " width =" 300 " ></p >
4
4
@@ -21,7 +21,7 @@ safe for production use.
21
21
22
22
## Roadmap
23
23
24
- We're trying out the GitHub Project feature to manage ` graphql-go ` 's [ development roadmap] ( https://github.com/graph-gophers /graphql-go/projects/1 ) .
24
+ We're trying out the GitHub Project feature to manage ` graphql-go ` 's [ development roadmap] ( https://github.com/golangid /graphql-go/projects/1 ) .
25
25
Feedback is welcome and appreciated.
26
26
27
27
## (Some) Documentation
@@ -36,8 +36,8 @@ import (
36
36
" log"
37
37
" net/http"
38
38
39
- graphql " github.com/graph-gophers /graphql-go"
40
- " github.com/graph-gophers /graphql-go/relay"
39
+ graphql " github.com/golangid /graphql-go"
40
+ " github.com/golangid /graphql-go/relay"
41
41
)
42
42
43
43
type query struct {}
@@ -60,7 +60,7 @@ Then run the file with `go run main.go`. To test:
60
60
``` sh
61
61
curl -XPOST -d ' {"query": "{ hello }"}' localhost:8080/query
62
62
```
63
- For more realistic usecases check our [ examples section] ( https://github.com/graph-gophers /graphql-go/wiki/Examples ) .
63
+ For more realistic usecases check our [ examples section] ( https://github.com/golangid /graphql-go/wiki/Examples ) .
64
64
65
65
### Resolvers
66
66
@@ -173,10 +173,10 @@ By default the library uses `noop.Tracer`. If you want to change that you can us
173
173
package main
174
174
175
175
import (
176
- " github.com/graph-gophers /graphql-go"
177
- " github.com/graph-gophers /graphql-go/example/starwars"
178
- otelgraphql " github.com/graph-gophers /graphql-go/trace/otel"
179
- " github.com/graph-gophers /graphql-go/trace/tracer"
176
+ " github.com/golangid /graphql-go"
177
+ " github.com/golangid /graphql-go/example/starwars"
178
+ otelgraphql " github.com/golangid /graphql-go/trace/otel"
179
+ " github.com/golangid /graphql-go/trace/tracer"
180
180
)
181
181
// ...
182
182
_ , err := graphql.ParseSchema (starwars.Schema , nil , graphql.Tracer (otelgraphql.DefaultTracer ()))
@@ -194,10 +194,10 @@ _, err = graphql.ParseSchema(starwars.Schema, nil, graphql.Tracer(&otelgraphql.T
194
194
package main
195
195
196
196
import (
197
- " github.com/graph-gophers /graphql-go"
198
- " github.com/graph-gophers /graphql-go/example/starwars"
199
- " github.com/graph-gophers /graphql-go/trace/opentracing"
200
- " github.com/graph-gophers /graphql-go/trace/tracer"
197
+ " github.com/golangid /graphql-go"
198
+ " github.com/golangid /graphql-go/example/starwars"
199
+ " github.com/golangid /graphql-go/trace/opentracing"
200
+ " github.com/golangid /graphql-go/trace/tracer"
201
201
)
202
202
// ...
203
203
_ , err := graphql.ParseSchema (starwars.Schema , nil , graphql.Tracer (opentracing.Tracer {}))
@@ -215,5 +215,5 @@ type Tracer interface {
215
215
```
216
216
217
217
218
- ### [ Examples] ( https://github.com/graph-gophers /graphql-go/wiki/Examples )
218
+ ### [ Examples] ( https://github.com/golangid /graphql-go/wiki/Examples )
219
219
0 commit comments