fix(deps): update module github.com/99designs/gqlgen to v0.17.53
This commit is contained in:
@@ -5,7 +5,7 @@ go 1.22.5
|
||||
toolchain go1.23.1
|
||||
|
||||
require (
|
||||
github.com/99designs/gqlgen v0.17.52
|
||||
github.com/99designs/gqlgen v0.17.53
|
||||
github.com/Khan/genqlient v0.7.0
|
||||
github.com/alecthomas/kong v1.2.1
|
||||
github.com/apex/log v1.9.0
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
filippo.io/edwards25519 v1.1.0 h1:FNf4tywRC1HmFuKW5xopWpigGjJKiJSV0Cqo0cJWDaA=
|
||||
filippo.io/edwards25519 v1.1.0/go.mod h1:BxyFTGdWcka3PhytdK4V28tE5sGfRvvvRV7EaN4VDT4=
|
||||
github.com/99designs/gqlgen v0.17.52 h1:0/sVe03L/EnD0WL8KNmYZnsAwm+XkoziWrwCUNFMMWc=
|
||||
github.com/99designs/gqlgen v0.17.52/go.mod h1:77/+pVe6zlTsz++oUg2m8VLgzdUPHxjoAG3BxI5y8Rc=
|
||||
github.com/99designs/gqlgen v0.17.53 h1:FJOJaF96d7Y5EBpoaLG96fz1NR6B8bFdCZI1yZwYArM=
|
||||
github.com/99designs/gqlgen v0.17.53/go.mod h1:77/+pVe6zlTsz++oUg2m8VLgzdUPHxjoAG3BxI5y8Rc=
|
||||
github.com/DATA-DOG/go-sqlmock v1.5.2 h1:OcvFkGmslmlZibjAjaHm3L//6LiuBgolP7OputlJIzU=
|
||||
github.com/DATA-DOG/go-sqlmock v1.5.2/go.mod h1:88MAG/4G7SMwSE3CeA0ZKzrT5CiOU3OJ+JlNzwDqpNU=
|
||||
github.com/Khan/genqlient v0.7.0 h1:GZ1meyRnzcDTK48EjqB8t3bcfYvHArCUUvgOwpz1D4w=
|
||||
|
||||
@@ -4480,27 +4480,15 @@ func (ec *executionContext) _Supergraph(ctx context.Context, sel ast.SelectionSe
|
||||
case nil:
|
||||
return graphql.Null
|
||||
case model.Unchanged:
|
||||
if len(graphql.CollectFields(ec.OperationContext, sel, []string{"Supergraph", "Unchanged"})) == 0 {
|
||||
return graphql.Empty{}
|
||||
}
|
||||
return ec._Unchanged(ctx, sel, &obj)
|
||||
case *model.Unchanged:
|
||||
if len(graphql.CollectFields(ec.OperationContext, sel, []string{"Supergraph", "Unchanged"})) == 0 {
|
||||
return graphql.Empty{}
|
||||
}
|
||||
if obj == nil {
|
||||
return graphql.Null
|
||||
}
|
||||
return ec._Unchanged(ctx, sel, obj)
|
||||
case model.SubGraphs:
|
||||
if len(graphql.CollectFields(ec.OperationContext, sel, []string{"Supergraph", "SubGraphs"})) == 0 {
|
||||
return graphql.Empty{}
|
||||
}
|
||||
return ec._SubGraphs(ctx, sel, &obj)
|
||||
case *model.SubGraphs:
|
||||
if len(graphql.CollectFields(ec.OperationContext, sel, []string{"Supergraph", "SubGraphs"})) == 0 {
|
||||
return graphql.Empty{}
|
||||
}
|
||||
if obj == nil {
|
||||
return graphql.Null
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user