Skip to content

Commit 1396512

Browse files
committed
Move graph-gophers/graphql-go to qdentity/graphql-go
1 parent ce76257 commit 1396512

File tree

28 files changed

+80
-80
lines changed

28 files changed

+80
-80
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
# graphql-go
22

3-
[![Sourcegraph](https://sourcegraph.com/github.com/graph-gophers/graphql-go/-/badge.svg)](https://sourcegraph.com/github.com/graph-gophers/graphql-go?badge)
3+
[![Sourcegraph](https://sourcegraph.com/github.com/qdentity/graphql-go/-/badge.svg)](https://sourcegraph.com/github.com/qdentity/graphql-go?badge)
44
[![Build Status](https://semaphoreci.com/api/v1/graph-gophers/graphql-go/branches/master/badge.svg)](https://semaphoreci.com/graph-gophers/graphql-go)
5-
[![GoDoc](https://godoc.org/github.com/graph-gophers/graphql-go?status.svg)](https://godoc.org/github.com/graph-gophers/graphql-go)
5+
[![GoDoc](https://godoc.org/github.com/qdentity/graphql-go?status.svg)](https://godoc.org/github.com/qdentity/graphql-go)
66

77
## Status
88

99
### Update: March 1, 2018
1010

1111
This project has transferred ownership from `github.com/neelance/graphql-go` to
12-
`github.com/graph-gophers/graphql-go`, which will enable us to maintain and evolve the
12+
`github.com/qdentity/graphql-go`, which will enable us to maintain and evolve the
1313
library [@neelance](https://github.com/neelance) created, and let him focus on WebAssembly / Go development.
1414

1515
I'm super grateful to @neelance for all his work blazing the trail

example/starwars/server/server.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ import (
44
"log"
55
"net/http"
66

7-
"github.com/graph-gophers/graphql-go"
8-
"github.com/graph-gophers/graphql-go/example/starwars"
9-
"github.com/graph-gophers/graphql-go/relay"
7+
"github.com/qdentity/graphql-go"
8+
"github.com/qdentity/graphql-go/example/starwars"
9+
"github.com/qdentity/graphql-go/relay"
1010
)
1111

1212
var schema *graphql.Schema

example/starwars/starwars.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"strconv"
1010
"strings"
1111

12-
graphql "github.com/graph-gophers/graphql-go"
12+
graphql "github.com/qdentity/graphql-go"
1313
)
1414

1515
var Schema = `

gqltesting/testing.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"strconv"
88
"testing"
99

10-
graphql "github.com/graph-gophers/graphql-go"
10+
graphql "github.com/qdentity/graphql-go"
1111
)
1212

1313
// Test is a GraphQL test case to be used with RunTest(s).

graphql.go

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,17 @@ import (
66

77
"encoding/json"
88

9-
"github.com/graph-gophers/graphql-go/errors"
10-
"github.com/graph-gophers/graphql-go/internal/common"
11-
"github.com/graph-gophers/graphql-go/internal/exec"
12-
"github.com/graph-gophers/graphql-go/internal/exec/resolvable"
13-
"github.com/graph-gophers/graphql-go/internal/exec/selected"
14-
"github.com/graph-gophers/graphql-go/internal/query"
15-
"github.com/graph-gophers/graphql-go/internal/schema"
16-
"github.com/graph-gophers/graphql-go/internal/validation"
17-
"github.com/graph-gophers/graphql-go/introspection"
18-
"github.com/graph-gophers/graphql-go/log"
19-
"github.com/graph-gophers/graphql-go/trace"
9+
"github.com/qdentity/graphql-go/errors"
10+
"github.com/qdentity/graphql-go/internal/common"
11+
"github.com/qdentity/graphql-go/internal/exec"
12+
"github.com/qdentity/graphql-go/internal/exec/resolvable"
13+
"github.com/qdentity/graphql-go/internal/exec/selected"
14+
"github.com/qdentity/graphql-go/internal/query"
15+
"github.com/qdentity/graphql-go/internal/schema"
16+
"github.com/qdentity/graphql-go/internal/validation"
17+
"github.com/qdentity/graphql-go/introspection"
18+
"github.com/qdentity/graphql-go/log"
19+
"github.com/qdentity/graphql-go/trace"
2020
)
2121

2222
// ParseSchema parses a GraphQL schema and attaches the given root resolver. It returns an error if

graphql_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ import (
55
"testing"
66
"time"
77

8-
"github.com/graph-gophers/graphql-go"
9-
"github.com/graph-gophers/graphql-go/example/starwars"
10-
"github.com/graph-gophers/graphql-go/gqltesting"
8+
"github.com/qdentity/graphql-go"
9+
"github.com/qdentity/graphql-go/example/starwars"
10+
"github.com/qdentity/graphql-go/gqltesting"
1111
)
1212

1313
type helloWorldResolver1 struct{}

internal/common/lexer.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"strings"
66
"text/scanner"
77

8-
"github.com/graph-gophers/graphql-go/errors"
8+
"github.com/qdentity/graphql-go/errors"
99
)
1010

1111
type syntaxError string

internal/common/lexer_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package common_test
33
import (
44
"testing"
55

6-
"github.com/graph-gophers/graphql-go/internal/common"
6+
"github.com/qdentity/graphql-go/internal/common"
77
)
88

99
type consumeTestCase struct {

internal/common/literals.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"strings"
66
"text/scanner"
77

8-
"github.com/graph-gophers/graphql-go/errors"
8+
"github.com/qdentity/graphql-go/errors"
99
)
1010

1111
type Literal interface {

internal/common/types.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package common
22

33
import (
4-
"github.com/graph-gophers/graphql-go/errors"
4+
"github.com/qdentity/graphql-go/errors"
55
)
66

77
type Type interface {

0 commit comments

Comments
 (0)