Revisiting an old app of mine, did a dep ensure -update and am using go version go1.10 darwin/amd64:
vendor/github.com/neelance/graphql-go/graphql.go:10:2: use of internal package not allowed
vendor/github.com/neelance/graphql-go/graphql.go:11:2: use of internal package not allowed
vendor/github.com/neelance/graphql-go/graphql.go:12:2: use of internal package not allowed
vendor/github.com/neelance/graphql-go/graphql.go:13:2: use of internal package not allowed
vendor/github.com/neelance/graphql-go/graphql.go:14:2: use of internal package not allowed
vendor/github.com/neelance/graphql-go/graphql.go:15:2: use of internal package not allowed
vendor/github.com/neelance/graphql-go/graphql.go:16:2: use of internal package not allowed
These correspond to the following code:
import (
...
"github.com/graph-gophers/graphql-go/internal/common"
"github.com/graph-gophers/graphql-go/internal/exec"
"github.com/graph-gophers/graphql-go/internal/exec/resolvable"
"github.com/graph-gophers/graphql-go/internal/exec/selected"
"github.com/graph-gophers/graphql-go/internal/query"
"github.com/graph-gophers/graphql-go/internal/schema"
"github.com/graph-gophers/graphql-go/internal/validation"
...
)
Is there something I'm missing here?
Turns outâ„¢: I still had references to .../neelance/graphql.go still in my code, which is what created the conditions for this error to happen.
So, sorry about the noise.
Most helpful comment
Turns outâ„¢: I still had references to
.../neelance/graphql.gostill in my code, which is what created the conditions for this error to happen.So, sorry about the noise.