Skip to content

Commit

Permalink
Bump github.com/wundergraph/graphql-go-tools/v2 from 2.0.0-rc.105 to …
Browse files Browse the repository at this point in the history
…2.0.0-rc.108 in /runtime (#498)

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Matt Johnson-Pint <[email protected]>
  • Loading branch information
dependabot[bot] and mattjohnsonpint authored Oct 23, 2024
1 parent 700a21d commit 8b9664e
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
2 changes: 1 addition & 1 deletion runtime/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ require (
github.com/tidwall/sjson v1.2.5
github.com/viterin/vek v0.4.2
github.com/wundergraph/graphql-go-tools/execution v1.0.7
github.com/wundergraph/graphql-go-tools/v2 v2.0.0-rc.105
github.com/wundergraph/graphql-go-tools/v2 v2.0.0-rc.108
golang.org/x/exp v0.0.0-20240909161429-701f63a606c0
google.golang.org/grpc v1.67.1
)
Expand Down
4 changes: 2 additions & 2 deletions runtime/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -262,8 +262,8 @@ github.com/wundergraph/cosmo/router v0.0.0-20240926091419-7c3781f4f507 h1:uojstb
github.com/wundergraph/cosmo/router v0.0.0-20240926091419-7c3781f4f507/go.mod h1:44kgNdnRaJVugapwUGRCbO27ziXNQTITJusRMmbl08c=
github.com/wundergraph/graphql-go-tools/execution v1.0.7 h1:q+FYRoRjgj1Q6LowYlaxHKAe1YtJ0WlCchxqnBBMW9E=
github.com/wundergraph/graphql-go-tools/execution v1.0.7/go.mod h1:sb+EyLG8bsKe8HVSU1tnTwWZSdhD8tFNvKH+1wllVuM=
github.com/wundergraph/graphql-go-tools/v2 v2.0.0-rc.105 h1:iSG8FONqEuujY6PQ5LvZplC8KjMLUbL1DEn6glepoT4=
github.com/wundergraph/graphql-go-tools/v2 v2.0.0-rc.105/go.mod h1:zkPVYJu1iQd0y1fBNj+oXe9uMI/33TSoiXEsKSAESZY=
github.com/wundergraph/graphql-go-tools/v2 v2.0.0-rc.108 h1:1GTf9trAfT8jWz81HYbXJECQSXxll9sxnn7HuevGAZo=
github.com/wundergraph/graphql-go-tools/v2 v2.0.0-rc.108/go.mod h1:zkPVYJu1iQd0y1fBNj+oXe9uMI/33TSoiXEsKSAESZY=
github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=
github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.55.0 h1:ZIg3ZT/aQ7AfKqdwp7ECpOK6vHqquXXuyTjIO8ZdmPs=
Expand Down
9 changes: 9 additions & 0 deletions runtime/graphql/datasource/planner.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ import (
)

type HypDSPlanner struct {
id int
ctx context.Context
config HypDSConfig
visitor *plan.Visitor
Expand Down Expand Up @@ -52,6 +53,14 @@ func (t *fieldInfo) AliasOrName() string {
return t.Name
}

func (p *HypDSPlanner) SetID(id int) {
p.id = id
}

func (p *HypDSPlanner) ID() (id int) {
return p.id
}

func (p *HypDSPlanner) UpstreamSchema(dataSourceConfig plan.DataSourceConfiguration[HypDSConfig]) (*ast.Document, bool) {
return nil, false
}
Expand Down

0 comments on commit 8b9664e

Please sign in to comment.