diff --git a/.travis.yml b/.travis.yml index c4783f0e..c174774b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,4 +10,3 @@ before_install: script: - $HOME/gopath/bin/goveralls -service=travis-ci - diff --git a/abstract_test.go b/abstract_test.go index 3f58fac1..b5934f6d 100644 --- a/abstract_test.go +++ b/abstract_test.go @@ -4,10 +4,10 @@ import ( "reflect" "testing" - "github.com/chris-ramon/graphql" - "github.com/chris-ramon/graphql/gqlerrors" - "github.com/chris-ramon/graphql/language/location" - "github.com/chris-ramon/graphql/testutil" + "github.com/graphql-go/graphql" + "github.com/graphql-go/graphql/gqlerrors" + "github.com/graphql-go/graphql/language/location" + "github.com/graphql-go/graphql/testutil" ) type testDog struct { diff --git a/definition.go b/definition.go index c1f0b126..3eacbbd8 100644 --- a/definition.go +++ b/definition.go @@ -6,7 +6,7 @@ import ( "reflect" "regexp" - "github.com/chris-ramon/graphql/language/ast" + "github.com/graphql-go/graphql/language/ast" ) // These are all of the possible kinds of diff --git a/definition_test.go b/definition_test.go index d5b5a8f9..f70f782d 100644 --- a/definition_test.go +++ b/definition_test.go @@ -5,8 +5,8 @@ import ( "reflect" "testing" - "github.com/chris-ramon/graphql" - "github.com/chris-ramon/graphql/testutil" + "github.com/graphql-go/graphql" + "github.com/graphql-go/graphql/testutil" ) var blogImage = graphql.NewObject(graphql.ObjectConfig{ diff --git a/directives_test.go b/directives_test.go index b25263e5..47f78fe9 100644 --- a/directives_test.go +++ b/directives_test.go @@ -4,8 +4,8 @@ import ( "reflect" "testing" - "github.com/chris-ramon/graphql" - "github.com/chris-ramon/graphql/testutil" + "github.com/graphql-go/graphql" + "github.com/graphql-go/graphql/testutil" ) var directivesTestSchema, _ = graphql.NewSchema(graphql.SchemaConfig{ diff --git a/enum_type_test.go b/enum_type_test.go index e8f09c36..bff0fe0e 100644 --- a/enum_type_test.go +++ b/enum_type_test.go @@ -4,9 +4,9 @@ import ( "reflect" "testing" - "github.com/chris-ramon/graphql" - "github.com/chris-ramon/graphql/gqlerrors" - "github.com/chris-ramon/graphql/testutil" + "github.com/graphql-go/graphql" + "github.com/graphql-go/graphql/gqlerrors" + "github.com/graphql-go/graphql/testutil" ) var enumTypeTestColorType = graphql.NewEnum(graphql.EnumConfig{ diff --git a/examples/http/main.go b/examples/http/main.go index 7a4e5d37..ff5ccbc0 100644 --- a/examples/http/main.go +++ b/examples/http/main.go @@ -6,7 +6,7 @@ import ( "io/ioutil" "net/http" - "github.com/chris-ramon/graphql" + "github.com/graphql-go/graphql" ) type user struct { diff --git a/executor.go b/executor.go index e7014f58..8915f631 100644 --- a/executor.go +++ b/executor.go @@ -5,8 +5,8 @@ import ( "reflect" "strings" - "github.com/chris-ramon/graphql/gqlerrors" - "github.com/chris-ramon/graphql/language/ast" + "github.com/graphql-go/graphql/gqlerrors" + "github.com/graphql-go/graphql/language/ast" ) type ExecuteParams struct { diff --git a/executor_schema_test.go b/executor_schema_test.go index a5fb6b12..c17214c2 100644 --- a/executor_schema_test.go +++ b/executor_schema_test.go @@ -5,8 +5,8 @@ import ( "reflect" "testing" - "github.com/chris-ramon/graphql" - "github.com/chris-ramon/graphql/testutil" + "github.com/graphql-go/graphql" + "github.com/graphql-go/graphql/testutil" ) // TODO: have a separate package for other tests for eg `parser` diff --git a/executor_test.go b/executor_test.go index 8f86c90a..a52b1c38 100644 --- a/executor_test.go +++ b/executor_test.go @@ -6,10 +6,10 @@ import ( "reflect" "testing" - "github.com/chris-ramon/graphql" - "github.com/chris-ramon/graphql/gqlerrors" - "github.com/chris-ramon/graphql/language/location" - "github.com/chris-ramon/graphql/testutil" + "github.com/graphql-go/graphql" + "github.com/graphql-go/graphql/gqlerrors" + "github.com/graphql-go/graphql/language/location" + "github.com/graphql-go/graphql/testutil" ) func TestExecutesArbitraryCode(t *testing.T) { diff --git a/gqlerrors/error.go b/gqlerrors/error.go index a6f59699..c32fff3c 100644 --- a/gqlerrors/error.go +++ b/gqlerrors/error.go @@ -3,9 +3,9 @@ package gqlerrors import ( "fmt" - "github.com/chris-ramon/graphql/language/ast" - "github.com/chris-ramon/graphql/language/location" - "github.com/chris-ramon/graphql/language/source" + "github.com/graphql-go/graphql/language/ast" + "github.com/graphql-go/graphql/language/location" + "github.com/graphql-go/graphql/language/source" ) type Error struct { diff --git a/gqlerrors/formatted.go b/gqlerrors/formatted.go index aaf054c8..25ffbf17 100644 --- a/gqlerrors/formatted.go +++ b/gqlerrors/formatted.go @@ -3,7 +3,7 @@ package gqlerrors import ( "errors" - "github.com/chris-ramon/graphql/language/location" + "github.com/graphql-go/graphql/language/location" ) type FormattedError struct { diff --git a/gqlerrors/located.go b/gqlerrors/located.go index 87029238..d5d1b020 100644 --- a/gqlerrors/located.go +++ b/gqlerrors/located.go @@ -1,7 +1,7 @@ package gqlerrors import ( - "github.com/chris-ramon/graphql/language/ast" + "github.com/graphql-go/graphql/language/ast" ) func NewLocatedError(err interface{}, nodes []ast.Node) *Error { diff --git a/gqlerrors/syntax.go b/gqlerrors/syntax.go index 17a283a8..76a39751 100644 --- a/gqlerrors/syntax.go +++ b/gqlerrors/syntax.go @@ -4,9 +4,9 @@ import ( "fmt" "regexp" - "github.com/chris-ramon/graphql/language/ast" - "github.com/chris-ramon/graphql/language/location" - "github.com/chris-ramon/graphql/language/source" + "github.com/graphql-go/graphql/language/ast" + "github.com/graphql-go/graphql/language/location" + "github.com/graphql-go/graphql/language/source" ) func NewSyntaxError(s *source.Source, position int, description string) *Error { diff --git a/graphql.go b/graphql.go index 6130d0a8..575738bd 100644 --- a/graphql.go +++ b/graphql.go @@ -1,9 +1,9 @@ package graphql import ( - "github.com/chris-ramon/graphql/gqlerrors" - "github.com/chris-ramon/graphql/language/parser" - "github.com/chris-ramon/graphql/language/source" + "github.com/graphql-go/graphql/gqlerrors" + "github.com/graphql-go/graphql/language/parser" + "github.com/graphql-go/graphql/language/source" ) type Params struct { diff --git a/graphql_test.go b/graphql_test.go index 38f8a40e..4f37df0f 100644 --- a/graphql_test.go +++ b/graphql_test.go @@ -4,8 +4,8 @@ import ( "reflect" "testing" - "github.com/chris-ramon/graphql" - "github.com/chris-ramon/graphql/testutil" + "github.com/graphql-go/graphql" + "github.com/graphql-go/graphql/testutil" ) type T struct { diff --git a/introspection.go b/introspection.go index 27286741..ce312682 100644 --- a/introspection.go +++ b/introspection.go @@ -4,8 +4,8 @@ import ( "fmt" "reflect" - "github.com/chris-ramon/graphql/language/ast" - "github.com/chris-ramon/graphql/language/printer" + "github.com/graphql-go/graphql/language/ast" + "github.com/graphql-go/graphql/language/printer" ) const ( diff --git a/introspection_test.go b/introspection_test.go index ac263468..7f89d91e 100644 --- a/introspection_test.go +++ b/introspection_test.go @@ -4,10 +4,10 @@ import ( "reflect" "testing" - "github.com/chris-ramon/graphql" - "github.com/chris-ramon/graphql/gqlerrors" - "github.com/chris-ramon/graphql/language/location" - "github.com/chris-ramon/graphql/testutil" + "github.com/graphql-go/graphql" + "github.com/graphql-go/graphql/gqlerrors" + "github.com/graphql-go/graphql/language/location" + "github.com/graphql-go/graphql/testutil" ) func g(t *testing.T, p graphql.Params) *graphql.Result { diff --git a/language/ast/arguments.go b/language/ast/arguments.go index 93cc7b60..5f7ef0d2 100644 --- a/language/ast/arguments.go +++ b/language/ast/arguments.go @@ -1,7 +1,7 @@ package ast import ( - "github.com/chris-ramon/graphql/language/kinds" + "github.com/graphql-go/graphql/language/kinds" ) // Argument implements Node diff --git a/language/ast/definitions.go b/language/ast/definitions.go index 38155365..19d07ce5 100644 --- a/language/ast/definitions.go +++ b/language/ast/definitions.go @@ -1,7 +1,7 @@ package ast import ( - "github.com/chris-ramon/graphql/language/kinds" + "github.com/graphql-go/graphql/language/kinds" ) type Definition interface { diff --git a/language/ast/directives.go b/language/ast/directives.go index 7dd49269..0c8a8c0e 100644 --- a/language/ast/directives.go +++ b/language/ast/directives.go @@ -1,7 +1,7 @@ package ast import ( - "github.com/chris-ramon/graphql/language/kinds" + "github.com/graphql-go/graphql/language/kinds" ) // Directive implements Node diff --git a/language/ast/document.go b/language/ast/document.go index 34385da9..dcb67034 100644 --- a/language/ast/document.go +++ b/language/ast/document.go @@ -1,7 +1,7 @@ package ast import ( - "github.com/chris-ramon/graphql/language/kinds" + "github.com/graphql-go/graphql/language/kinds" ) // Document implements Node diff --git a/language/ast/location.go b/language/ast/location.go index 6f60120c..266dc847 100644 --- a/language/ast/location.go +++ b/language/ast/location.go @@ -1,7 +1,7 @@ package ast import ( - "github.com/chris-ramon/graphql/language/source" + "github.com/graphql-go/graphql/language/source" ) type Location struct { diff --git a/language/ast/name.go b/language/ast/name.go index 645f1bfc..00fddbcd 100644 --- a/language/ast/name.go +++ b/language/ast/name.go @@ -1,7 +1,7 @@ package ast import ( - "github.com/chris-ramon/graphql/language/kinds" + "github.com/graphql-go/graphql/language/kinds" ) // Name implements Node diff --git a/language/ast/selections.go b/language/ast/selections.go index 0fe5a4fc..1b7e60d2 100644 --- a/language/ast/selections.go +++ b/language/ast/selections.go @@ -1,7 +1,7 @@ package ast import ( - "github.com/chris-ramon/graphql/language/kinds" + "github.com/graphql-go/graphql/language/kinds" ) type Selection interface { diff --git a/language/ast/type_definitions.go b/language/ast/type_definitions.go index 18b07503..7af1d861 100644 --- a/language/ast/type_definitions.go +++ b/language/ast/type_definitions.go @@ -1,7 +1,7 @@ package ast import ( - "github.com/chris-ramon/graphql/language/kinds" + "github.com/graphql-go/graphql/language/kinds" ) // Ensure that all typeDefinition types implements Definition interface diff --git a/language/ast/types.go b/language/ast/types.go index 146217c3..27f00997 100644 --- a/language/ast/types.go +++ b/language/ast/types.go @@ -1,7 +1,7 @@ package ast import ( - "github.com/chris-ramon/graphql/language/kinds" + "github.com/graphql-go/graphql/language/kinds" ) type Type interface { diff --git a/language/ast/values.go b/language/ast/values.go index 2b484a66..67912bdc 100644 --- a/language/ast/values.go +++ b/language/ast/values.go @@ -1,7 +1,7 @@ package ast import ( - "github.com/chris-ramon/graphql/language/kinds" + "github.com/graphql-go/graphql/language/kinds" ) type Value interface { diff --git a/language/lexer/lexer.go b/language/lexer/lexer.go index 5dccefd6..7b55c37c 100644 --- a/language/lexer/lexer.go +++ b/language/lexer/lexer.go @@ -3,8 +3,8 @@ package lexer import ( "fmt" - "github.com/chris-ramon/graphql/gqlerrors" - "github.com/chris-ramon/graphql/language/source" + "github.com/graphql-go/graphql/gqlerrors" + "github.com/graphql-go/graphql/language/source" ) const ( diff --git a/language/lexer/lexer_test.go b/language/lexer/lexer_test.go index ac56ee73..1db38bcf 100644 --- a/language/lexer/lexer_test.go +++ b/language/lexer/lexer_test.go @@ -4,7 +4,7 @@ import ( "reflect" "testing" - "github.com/chris-ramon/graphql/language/source" + "github.com/graphql-go/graphql/language/source" ) type Test struct { diff --git a/language/location/location.go b/language/location/location.go index 6ec9784d..de2d4d54 100644 --- a/language/location/location.go +++ b/language/location/location.go @@ -3,7 +3,7 @@ package location import ( "regexp" - "github.com/chris-ramon/graphql/language/source" + "github.com/graphql-go/graphql/language/source" ) type SourceLocation struct { diff --git a/language/parser/parser.go b/language/parser/parser.go index 760e6d22..f2b868ae 100644 --- a/language/parser/parser.go +++ b/language/parser/parser.go @@ -3,10 +3,10 @@ package parser import ( "fmt" - "github.com/chris-ramon/graphql/gqlerrors" - "github.com/chris-ramon/graphql/language/ast" - "github.com/chris-ramon/graphql/language/lexer" - "github.com/chris-ramon/graphql/language/source" + "github.com/graphql-go/graphql/gqlerrors" + "github.com/graphql-go/graphql/language/ast" + "github.com/graphql-go/graphql/language/lexer" + "github.com/graphql-go/graphql/language/source" ) type parseFn func(parser *Parser) (interface{}, error) diff --git a/language/parser/parser_test.go b/language/parser/parser_test.go index a002fb55..54663e49 100644 --- a/language/parser/parser_test.go +++ b/language/parser/parser_test.go @@ -7,10 +7,10 @@ import ( "strings" "testing" - "github.com/chris-ramon/graphql/gqlerrors" - "github.com/chris-ramon/graphql/language/ast" - "github.com/chris-ramon/graphql/language/location" - "github.com/chris-ramon/graphql/language/source" + "github.com/graphql-go/graphql/gqlerrors" + "github.com/graphql-go/graphql/language/ast" + "github.com/graphql-go/graphql/language/location" + "github.com/graphql-go/graphql/language/source" ) func TestAcceptsOptionToNotIncludeSource(t *testing.T) { diff --git a/language/parser/schema_parser_test.go b/language/parser/schema_parser_test.go index ee4bc2f9..ce6e552c 100644 --- a/language/parser/schema_parser_test.go +++ b/language/parser/schema_parser_test.go @@ -4,10 +4,10 @@ import ( "reflect" "testing" - "github.com/chris-ramon/graphql/gqlerrors" - "github.com/chris-ramon/graphql/language/ast" - "github.com/chris-ramon/graphql/language/location" - "github.com/chris-ramon/graphql/language/source" + "github.com/graphql-go/graphql/gqlerrors" + "github.com/graphql-go/graphql/language/ast" + "github.com/graphql-go/graphql/language/location" + "github.com/graphql-go/graphql/language/source" ) func parse(t *testing.T, query string) *ast.Document { diff --git a/language/printer/printer.go b/language/printer/printer.go index 676bed07..c4a35f52 100644 --- a/language/printer/printer.go +++ b/language/printer/printer.go @@ -4,8 +4,8 @@ import ( "fmt" "strings" - "github.com/chris-ramon/graphql/language/ast" - "github.com/chris-ramon/graphql/language/visitor" + "github.com/graphql-go/graphql/language/ast" + "github.com/graphql-go/graphql/language/visitor" ) func getMapValue(m map[string]interface{}, key string) interface{} { diff --git a/language/printer/printer_test.go b/language/printer/printer_test.go index dbcf3eed..61d3dca1 100644 --- a/language/printer/printer_test.go +++ b/language/printer/printer_test.go @@ -5,10 +5,10 @@ import ( "reflect" "testing" - "github.com/chris-ramon/graphql/language/ast" - "github.com/chris-ramon/graphql/language/parser" - "github.com/chris-ramon/graphql/language/printer" - "github.com/chris-ramon/graphql/testutil" + "github.com/graphql-go/graphql/language/ast" + "github.com/graphql-go/graphql/language/parser" + "github.com/graphql-go/graphql/language/printer" + "github.com/graphql-go/graphql/testutil" ) func parse(t *testing.T, query string) *ast.Document { diff --git a/language/printer/schema_printer_test.go b/language/printer/schema_printer_test.go index c4c6307f..344c8ac4 100644 --- a/language/printer/schema_printer_test.go +++ b/language/printer/schema_printer_test.go @@ -5,9 +5,9 @@ import ( "reflect" "testing" - "github.com/chris-ramon/graphql/language/ast" - "github.com/chris-ramon/graphql/language/printer" - "github.com/chris-ramon/graphql/testutil" + "github.com/graphql-go/graphql/language/ast" + "github.com/graphql-go/graphql/language/printer" + "github.com/graphql-go/graphql/testutil" ) func TestSchemaPrinter_PrintsMinimalAST(t *testing.T) { diff --git a/language/visitor/visitor_test.go b/language/visitor/visitor_test.go index ef6c5a75..d2323c0f 100644 --- a/language/visitor/visitor_test.go +++ b/language/visitor/visitor_test.go @@ -7,10 +7,10 @@ import ( "strings" "testing" - "github.com/chris-ramon/graphql/language/ast" - "github.com/chris-ramon/graphql/language/parser" - "github.com/chris-ramon/graphql/language/visitor" - "github.com/chris-ramon/graphql/testutil" + "github.com/graphql-go/graphql/language/ast" + "github.com/graphql-go/graphql/language/parser" + "github.com/graphql-go/graphql/language/visitor" + "github.com/graphql-go/graphql/testutil" ) func parse(t *testing.T, query string) *ast.Document { diff --git a/lists_test.go b/lists_test.go index e6af7389..eab76a2f 100644 --- a/lists_test.go +++ b/lists_test.go @@ -4,10 +4,10 @@ import ( "reflect" "testing" - "github.com/chris-ramon/graphql" - "github.com/chris-ramon/graphql/gqlerrors" - "github.com/chris-ramon/graphql/language/location" - "github.com/chris-ramon/graphql/testutil" + "github.com/graphql-go/graphql" + "github.com/graphql-go/graphql/gqlerrors" + "github.com/graphql-go/graphql/language/location" + "github.com/graphql-go/graphql/testutil" ) func checkList(t *testing.T, testType graphql.Type, testData interface{}, expected *graphql.Result) { diff --git a/located.go b/located.go index 2f741ae7..e7a4cdc0 100644 --- a/located.go +++ b/located.go @@ -1,8 +1,8 @@ package graphql import ( - "github.com/chris-ramon/graphql/gqlerrors" - "github.com/chris-ramon/graphql/language/ast" + "github.com/graphql-go/graphql/gqlerrors" + "github.com/graphql-go/graphql/language/ast" ) func NewLocatedError(err interface{}, nodes []ast.Node) *gqlerrors.Error { diff --git a/mutations_test.go b/mutations_test.go index 9f162c56..91bf3d78 100644 --- a/mutations_test.go +++ b/mutations_test.go @@ -4,10 +4,10 @@ import ( "reflect" "testing" - "github.com/chris-ramon/graphql" - "github.com/chris-ramon/graphql/gqlerrors" - "github.com/chris-ramon/graphql/language/location" - "github.com/chris-ramon/graphql/testutil" + "github.com/graphql-go/graphql" + "github.com/graphql-go/graphql/gqlerrors" + "github.com/graphql-go/graphql/language/location" + "github.com/graphql-go/graphql/testutil" ) // testNumberHolder maps to numberHolderType diff --git a/nonnull_test.go b/nonnull_test.go index b455318a..d561c238 100644 --- a/nonnull_test.go +++ b/nonnull_test.go @@ -5,10 +5,10 @@ import ( "sort" "testing" - "github.com/chris-ramon/graphql" - "github.com/chris-ramon/graphql/gqlerrors" - "github.com/chris-ramon/graphql/language/location" - "github.com/chris-ramon/graphql/testutil" + "github.com/graphql-go/graphql" + "github.com/graphql-go/graphql/gqlerrors" + "github.com/graphql-go/graphql/language/location" + "github.com/graphql-go/graphql/testutil" ) var syncError = "sync" diff --git a/scalars.go b/scalars.go index 98dd67d7..78505db6 100644 --- a/scalars.go +++ b/scalars.go @@ -4,7 +4,7 @@ import ( "fmt" "strconv" - "github.com/chris-ramon/graphql/language/ast" + "github.com/graphql-go/graphql/language/ast" ) var ( diff --git a/scalars_serialization_test.go b/scalars_serialization_test.go index 3e094f16..ac4a990b 100644 --- a/scalars_serialization_test.go +++ b/scalars_serialization_test.go @@ -4,7 +4,7 @@ import ( "reflect" "testing" - "github.com/chris-ramon/graphql" + "github.com/graphql-go/graphql" ) type intSerializationTest struct { diff --git a/testutil/testutil.go b/testutil/testutil.go index acac9275..04d5cecc 100644 --- a/testutil/testutil.go +++ b/testutil/testutil.go @@ -6,9 +6,9 @@ import ( "strconv" "testing" - "github.com/chris-ramon/graphql" - "github.com/chris-ramon/graphql/language/ast" - "github.com/chris-ramon/graphql/language/parser" + "github.com/graphql-go/graphql" + "github.com/graphql-go/graphql/language/ast" + "github.com/graphql-go/graphql/language/parser" "github.com/kr/pretty" ) diff --git a/testutil/testutil_test.go b/testutil/testutil_test.go index 2cd6144a..ca61eec7 100644 --- a/testutil/testutil_test.go +++ b/testutil/testutil_test.go @@ -3,7 +3,7 @@ package testutil_test import ( "testing" - "github.com/chris-ramon/graphql/testutil" + "github.com/graphql-go/graphql/testutil" ) func TestSubsetSlice_Simple(t *testing.T) { diff --git a/types.go b/types.go index 13df16fb..9bbe52e4 100644 --- a/types.go +++ b/types.go @@ -1,7 +1,7 @@ package graphql import ( - "github.com/chris-ramon/graphql/gqlerrors" + "github.com/graphql-go/graphql/gqlerrors" ) // type Schema interface{} diff --git a/union_interface_test.go b/union_interface_test.go index 89ea57cf..9bdada91 100644 --- a/union_interface_test.go +++ b/union_interface_test.go @@ -4,8 +4,8 @@ import ( "reflect" "testing" - "github.com/chris-ramon/graphql" - "github.com/chris-ramon/graphql/testutil" + "github.com/graphql-go/graphql" + "github.com/graphql-go/graphql/testutil" ) type testNamedType interface { diff --git a/validation_test.go b/validation_test.go index 4889c8a6..975148db 100644 --- a/validation_test.go +++ b/validation_test.go @@ -3,8 +3,8 @@ package graphql_test import ( "testing" - "github.com/chris-ramon/graphql" - "github.com/chris-ramon/graphql/language/ast" + "github.com/graphql-go/graphql" + "github.com/graphql-go/graphql/language/ast" ) var someScalarType = graphql.NewScalar(graphql.ScalarConfig{ diff --git a/validator.go b/validator.go index 24879e65..3d1a8e72 100644 --- a/validator.go +++ b/validator.go @@ -1,8 +1,8 @@ package graphql import ( - "github.com/chris-ramon/graphql/gqlerrors" - "github.com/chris-ramon/graphql/language/ast" + "github.com/graphql-go/graphql/gqlerrors" + "github.com/graphql-go/graphql/language/ast" ) type ValidationResult struct { diff --git a/values.go b/values.go index 08d812b3..880a5129 100644 --- a/values.go +++ b/values.go @@ -6,10 +6,10 @@ import ( "math" "reflect" - "github.com/chris-ramon/graphql/gqlerrors" - "github.com/chris-ramon/graphql/language/ast" - "github.com/chris-ramon/graphql/language/kinds" - "github.com/chris-ramon/graphql/language/printer" + "github.com/graphql-go/graphql/gqlerrors" + "github.com/graphql-go/graphql/language/ast" + "github.com/graphql-go/graphql/language/kinds" + "github.com/graphql-go/graphql/language/printer" ) // Prepares an object map of variableValues of the correct type based on the diff --git a/variables_test.go b/variables_test.go index d1f59fe7..85119e7b 100644 --- a/variables_test.go +++ b/variables_test.go @@ -5,11 +5,11 @@ import ( "reflect" "testing" - "github.com/chris-ramon/graphql" - "github.com/chris-ramon/graphql/gqlerrors" - "github.com/chris-ramon/graphql/language/ast" - "github.com/chris-ramon/graphql/language/location" - "github.com/chris-ramon/graphql/testutil" + "github.com/graphql-go/graphql" + "github.com/graphql-go/graphql/gqlerrors" + "github.com/graphql-go/graphql/language/ast" + "github.com/graphql-go/graphql/language/location" + "github.com/graphql-go/graphql/testutil" ) var testComplexScalar *graphql.Scalar = graphql.NewScalar(graphql.ScalarConfig{