chore: regenerate gqlgen output for v0.17.94
schemas / check-release (pull_request) Successful in 1m0s
schemas / vulnerabilities (pull_request) Successful in 1m7s
schemas / check (pull_request) Successful in 1m35s
pre-commit / pre-commit (pull_request) Successful in 3m31s
schemas / build (pull_request) Successful in 3m54s
schemas / deploy-prod (pull_request) Has been skipped

gqlgen v0.17.94 changed the generated slice coercion to a short variable
declaration. Regenerate so the CI generate-and-format check stays clean.
This commit is contained in:
2026-07-15 13:22:44 +02:00
parent 61cb42e99b
commit 0aa02a73db
+2 -4
View File
@@ -4910,8 +4910,7 @@ func (ec *executionContext) marshalNString2string(ctx context.Context, sel ast.S
}
func (ec *executionContext) unmarshalNString2ᚕstringᚄ(ctx context.Context, v any) ([]string, error) {
var vSlice []any
vSlice = graphql.CoerceList(v)
vSlice := graphql.CoerceList(v)
var err error
res := make([]string, len(vSlice))
for i := range vSlice {
@@ -5058,8 +5057,7 @@ func (ec *executionContext) marshalN__DirectiveLocation2string(ctx context.Conte
}
func (ec *executionContext) unmarshalN__DirectiveLocation2ᚕstringᚄ(ctx context.Context, v any) ([]string, error) {
var vSlice []any
vSlice = graphql.CoerceList(v)
vSlice := graphql.CoerceList(v)
var err error
res := make([]string, len(vSlice))
for i := range vSlice {