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

This commit is contained in:
Renovate
2025-04-18 01:54:55 +00:00
committed by Joakim Olsson
parent 69e232cd7c
commit a87b480345
3 changed files with 28 additions and 28 deletions
+5 -5
View File
@@ -128,7 +128,7 @@ func (e *executableSchema) Schema() *ast.Schema {
return parsedSchema
}
func (e *executableSchema) Complexity(typeName, field string, childComplexity int, rawArgs map[string]any) (int, bool) {
func (e *executableSchema) Complexity(ctx context.Context, typeName, field string, childComplexity int, rawArgs map[string]any) (int, bool) {
ec := executionContext{nil, e, 0, 0, nil}
_ = ec
switch typeName + "." + field {
@@ -187,7 +187,7 @@ func (e *executableSchema) Complexity(typeName, field string, childComplexity in
break
}
args, err := ec.field_Mutation_addAPIKey_args(context.TODO(), rawArgs)
args, err := ec.field_Mutation_addAPIKey_args(ctx, rawArgs)
if err != nil {
return 0, false
}
@@ -199,7 +199,7 @@ func (e *executableSchema) Complexity(typeName, field string, childComplexity in
break
}
args, err := ec.field_Mutation_addOrganization_args(context.TODO(), rawArgs)
args, err := ec.field_Mutation_addOrganization_args(ctx, rawArgs)
if err != nil {
return 0, false
}
@@ -211,7 +211,7 @@ func (e *executableSchema) Complexity(typeName, field string, childComplexity in
break
}
args, err := ec.field_Mutation_updateSubGraph_args(context.TODO(), rawArgs)
args, err := ec.field_Mutation_updateSubGraph_args(ctx, rawArgs)
if err != nil {
return 0, false
}
@@ -258,7 +258,7 @@ func (e *executableSchema) Complexity(typeName, field string, childComplexity in
break
}
args, err := ec.field_Query_supergraph_args(context.TODO(), rawArgs)
args, err := ec.field_Query_supergraph_args(ctx, rawArgs)
if err != nil {
return 0, false
}