diff --git a/go.mod b/go.mod index bedc63e..c28275d 100644 --- a/go.mod +++ b/go.mod @@ -5,7 +5,7 @@ go 1.21 toolchain go1.21.3 require ( - github.com/99designs/gqlgen v0.17.41 + github.com/99designs/gqlgen v0.17.42 github.com/Khan/genqlient v0.6.0 github.com/alecthomas/kong v0.8.1 github.com/apex/log v1.9.0 diff --git a/go.sum b/go.sum index 82ae7ef..9b30b4f 100644 --- a/go.sum +++ b/go.sum @@ -1,5 +1,5 @@ -github.com/99designs/gqlgen v0.17.41 h1:C1/zYMhGVP5TWNCNpmZ9Mb6CqT1Vr5SHEWoTOEJ3v3I= -github.com/99designs/gqlgen v0.17.41/go.mod h1:GQ6SyMhwFbgHR0a8r2Wn8fYgEwPxxmndLFPhU63+cJE= +github.com/99designs/gqlgen v0.17.42 h1:BVWDOb2VVHQC5k3m6oa0XhDnxltLLrU4so7x/u39Zu4= +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/go.mod h1:xomTg63KZ2rFqZQzSB4Vz2SUXa1BpHTVz9L5PTmPC4E= github.com/ClickHouse/ch-go v0.58.2 h1:jSm2szHbT9MCAB1rJ3WuCJqmGLi5UTjlNu+f530UTS0= diff --git a/graph/model/models_gen.go b/graph/model/models_gen.go index 55718c1..975206d 100644 --- a/graph/model/models_gen.go +++ b/graph/model/models_gen.go @@ -36,6 +36,9 @@ type InputSubGraph struct { Sdl string `json:"sdl"` } +type Mutation struct { +} + type Organization struct { ID string `json:"id"` Name string `json:"name"` @@ -43,6 +46,9 @@ type Organization struct { APIKeys []*APIKey `json:"apiKeys"` } +type Query struct { +} + type SubGraph struct { ID string `json:"id"` Service string `json:"service"`