Graphql-go: Use of internal package not allowed

Created on 13 Mar 2018  Â·  1Comment  Â·  Source: graph-gophers/graphql-go

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?

Most helpful comment

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.

>All comments

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.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

JitinGuglani picture JitinGuglani  Â·  6Comments

bsr203 picture bsr203  Â·  6Comments

thewillhuang picture thewillhuang  Â·  5Comments

aquiseb picture aquiseb  Â·  4Comments

Melaninneal picture Melaninneal  Â·  5Comments