File tree Expand file tree Collapse file tree 7 files changed +8
-7
lines changed Expand file tree Collapse file tree 7 files changed +8
-7
lines changed Original file line number Diff line number Diff line change 11package graphql
22
33import (
4+ "context"
45 "fmt"
56 "reflect"
67 "regexp"
78
89 "github.com/graphql-go/graphql/language/ast"
9- "golang.org/x/net/context"
1010)
1111
1212// Type interface for all of the possible kinds of GraphQL types
Original file line number Diff line number Diff line change 11package main
22
33import (
4+ "context"
45 "encoding/json"
56 "fmt"
67 "log"
78 "net/http"
89
910 "github.com/graphql-go/graphql"
10- "golang.org/x/net/context"
1111)
1212
1313var Schema graphql.Schema
Original file line number Diff line number Diff line change 11package graphql
22
33import (
4+ "context"
45 "errors"
56 "fmt"
67 "reflect"
78 "strings"
89
910 "github.com/graphql-go/graphql/gqlerrors"
1011 "github.com/graphql-go/graphql/language/ast"
11- "golang.org/x/net/context"
1212)
1313
1414type ExecuteParams struct {
Original file line number Diff line number Diff line change 11package graphql_test
22
33import (
4+ "context"
45 "encoding/json"
56 "errors"
67 "fmt"
@@ -12,7 +13,6 @@ import (
1213 "github.com/graphql-go/graphql/gqlerrors"
1314 "github.com/graphql-go/graphql/language/location"
1415 "github.com/graphql-go/graphql/testutil"
15- "golang.org/x/net/context"
1616)
1717
1818func TestExecutesArbitraryCode (t * testing.T ) {
Original file line number Diff line number Diff line change 11package graphql
22
33import (
4+ "context"
5+
46 "github.com/graphql-go/graphql/gqlerrors"
57 "github.com/graphql-go/graphql/language/parser"
68 "github.com/graphql-go/graphql/language/source"
7- "golang.org/x/net/context"
89)
910
1011type Params struct {
Original file line number Diff line number Diff line change 11package graphql_test
22
33import (
4+ "context"
45 "reflect"
56 "testing"
67
78 "github.com/graphql-go/graphql"
89 "github.com/graphql-go/graphql/testutil"
9- "golang.org/x/net/context"
1010)
1111
1212type T struct {
Original file line number Diff line number Diff line change 11package graphql_test
22
33import (
4+ "context"
45 "reflect"
56 "testing"
67
78 "github.com/graphql-go/graphql"
89 "github.com/graphql-go/graphql/testutil"
9- "golang.org/x/net/context"
1010)
1111
1212type testNamedType interface {
You can’t perform that action at this time.
0 commit comments