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

This commit is contained in:
Renovate
2026-01-13 08:40:58 +01:00
committed by Joakim Olsson
parent 73fdf6c896
commit b69de655e4
3 changed files with 8 additions and 8 deletions
+2 -2
View File
@@ -4196,8 +4196,8 @@ func (ec *executionContext) _Supergraph(ctx context.Context, sel ast.SelectionSe
}
return ec._SubGraphs(ctx, sel, obj)
default:
if obj, ok := obj.(graphql.Marshaler); ok {
return obj
if typedObj, ok := obj.(graphql.Marshaler); ok {
return typedObj
} else {
panic(fmt.Errorf("unexpected type %T; non-generated variants of Supergraph must implement graphql.Marshaler", obj))
}