Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump github.com/wundergraph/graphql-go-tools/v2 from 2.0.0-rc.105 to 2.0.0-rc.108 in /runtime #498

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading