fix(deps): update module github.com/99designs/gqlgen to v0.17.50

This commit is contained in:
Renovate
2024-09-13 16:53:19 +00:00
committed by Joakim Olsson
parent 09066e17d2
commit e55acc3c6f
4 changed files with 1550 additions and 169 deletions
+10 -12
View File
@@ -272,7 +272,7 @@ type __UpdateSubGraphInput struct {
// GetInput returns __UpdateSubGraphInput.Input, and is useful for accessing the field via an interface.
func (v *__UpdateSubGraphInput) GetInput() *InputSubGraph { return v.Input }
// The query or mutation executed by SubGraphs.
// The query executed by SubGraphs.
const SubGraphs_Operation = `
query SubGraphs ($ref: String!) {
supergraph(ref: $ref) {
@@ -294,7 +294,7 @@ func SubGraphs(
ctx_ context.Context,
client_ graphql.Client,
ref string,
) (*SubGraphsResponse, error) {
) (data_ *SubGraphsResponse, err_ error) {
req_ := &graphql.Request{
OpName: "SubGraphs",
Query: SubGraphs_Operation,
@@ -302,10 +302,9 @@ func SubGraphs(
Ref: ref,
},
}
var err_ error
var data_ SubGraphsResponse
resp_ := &graphql.Response{Data: &data_}
data_ = &SubGraphsResponse{}
resp_ := &graphql.Response{Data: data_}
err_ = client_.MakeRequest(
ctx_,
@@ -313,10 +312,10 @@ func SubGraphs(
resp_,
)
return &data_, err_
return data_, err_
}
// The query or mutation executed by UpdateSubGraph.
// The mutation executed by UpdateSubGraph.
const UpdateSubGraph_Operation = `
mutation UpdateSubGraph ($input: InputSubGraph!) {
updateSubGraph(input: $input) {
@@ -333,7 +332,7 @@ func UpdateSubGraph(
ctx_ context.Context,
client_ graphql.Client,
input *InputSubGraph,
) (*UpdateSubGraphResponse, error) {
) (data_ *UpdateSubGraphResponse, err_ error) {
req_ := &graphql.Request{
OpName: "UpdateSubGraph",
Query: UpdateSubGraph_Operation,
@@ -341,10 +340,9 @@ func UpdateSubGraph(
Input: input,
},
}
var err_ error
var data_ UpdateSubGraphResponse
resp_ := &graphql.Response{Data: &data_}
data_ = &UpdateSubGraphResponse{}
resp_ := &graphql.Response{Data: data_}
err_ = client_.MakeRequest(
ctx_,
@@ -352,5 +350,5 @@ func UpdateSubGraph(
resp_,
)
return &data_, err_
return data_, err_
}