chore(deps): bump github.com/99designs/gqlgen from 0.17.41 to 0.17.42

Bumps [github.com/99designs/gqlgen](https://github.com/99designs/gqlgen) from 0.17.41 to 0.17.42.
- [Release notes](https://github.com/99designs/gqlgen/releases)
- [Changelog](https://github.com/99designs/gqlgen/blob/master/CHANGELOG.md)
- [Commits](https://github.com/99designs/gqlgen/compare/v0.17.41...v0.17.42)
This commit is contained in:
2023-12-30 06:24:41 +00:00
parent bed52ea25c
commit 92d33b078c
3 changed files with 9 additions and 3 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ go 1.21
toolchain go1.21.3 toolchain go1.21.3
require ( require (
github.com/99designs/gqlgen v0.17.41 github.com/99designs/gqlgen v0.17.42
github.com/Khan/genqlient v0.6.0 github.com/Khan/genqlient v0.6.0
github.com/alecthomas/kong v0.8.1 github.com/alecthomas/kong v0.8.1
github.com/apex/log v1.9.0 github.com/apex/log v1.9.0
+2 -2
View File
@@ -1,5 +1,5 @@
github.com/99designs/gqlgen v0.17.41 h1:C1/zYMhGVP5TWNCNpmZ9Mb6CqT1Vr5SHEWoTOEJ3v3I= github.com/99designs/gqlgen v0.17.42 h1:BVWDOb2VVHQC5k3m6oa0XhDnxltLLrU4so7x/u39Zu4=
github.com/99designs/gqlgen v0.17.41/go.mod h1:GQ6SyMhwFbgHR0a8r2Wn8fYgEwPxxmndLFPhU63+cJE= github.com/99designs/gqlgen v0.17.42/go.mod h1:GQ6SyMhwFbgHR0a8r2Wn8fYgEwPxxmndLFPhU63+cJE=
github.com/Azure/go-ansiterm v0.0.0-20230124172434-306776ec8161 h1:L/gRVlceqvL25UVaW/CKtUDjefjrs0SPonmDGUVOYP0= github.com/Azure/go-ansiterm v0.0.0-20230124172434-306776ec8161 h1:L/gRVlceqvL25UVaW/CKtUDjefjrs0SPonmDGUVOYP0=
github.com/Azure/go-ansiterm v0.0.0-20230124172434-306776ec8161/go.mod h1:xomTg63KZ2rFqZQzSB4Vz2SUXa1BpHTVz9L5PTmPC4E= github.com/Azure/go-ansiterm v0.0.0-20230124172434-306776ec8161/go.mod h1:xomTg63KZ2rFqZQzSB4Vz2SUXa1BpHTVz9L5PTmPC4E=
github.com/ClickHouse/ch-go v0.58.2 h1:jSm2szHbT9MCAB1rJ3WuCJqmGLi5UTjlNu+f530UTS0= github.com/ClickHouse/ch-go v0.58.2 h1:jSm2szHbT9MCAB1rJ3WuCJqmGLi5UTjlNu+f530UTS0=
+6
View File
@@ -36,6 +36,9 @@ type InputSubGraph struct {
Sdl string `json:"sdl"` Sdl string `json:"sdl"`
} }
type Mutation struct {
}
type Organization struct { type Organization struct {
ID string `json:"id"` ID string `json:"id"`
Name string `json:"name"` Name string `json:"name"`
@@ -43,6 +46,9 @@ type Organization struct {
APIKeys []*APIKey `json:"apiKeys"` APIKeys []*APIKey `json:"apiKeys"`
} }
type Query struct {
}
type SubGraph struct { type SubGraph struct {
ID string `json:"id"` ID string `json:"id"`
Service string `json:"service"` Service string `json:"service"`