fix(deps): update module github.com/99designs/gqlgen to v0.17.62
This commit is contained in:
@@ -5,7 +5,7 @@ go 1.22.5
|
||||
toolchain go1.23.4
|
||||
|
||||
require (
|
||||
github.com/99designs/gqlgen v0.17.61
|
||||
github.com/99designs/gqlgen v0.17.62
|
||||
github.com/Khan/genqlient v0.7.0
|
||||
github.com/alecthomas/kong v1.6.0
|
||||
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.61 h1:vE7xLRC066n9wehgjeplILOWtwz75zbzcV2/Iv9i3pw=
|
||||
github.com/99designs/gqlgen v0.17.61/go.mod h1:rFU1T3lhv/tPeAlww/DJ4ol2YxT/pPpue+xxPbkd3r4=
|
||||
github.com/99designs/gqlgen v0.17.62 h1:Wovt1+XJN9dTWYh92537Y9a5FuMVSkrQL4bn0a8v5Rg=
|
||||
github.com/99designs/gqlgen v0.17.62/go.mod h1:sVCM2iwIZisJjTI/DEC3fpH+HFgxY1496ZJ+jbT9IjA=
|
||||
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=
|
||||
|
||||
@@ -572,11 +572,7 @@ func (ec *executionContext) dir_auth_argsUser(
|
||||
ctx context.Context,
|
||||
rawArgs map[string]any,
|
||||
) (*bool, error) {
|
||||
// We won't call the directive if the argument is null.
|
||||
// Set call_argument_directives_with_null to true to call directives
|
||||
// even if the argument is null.
|
||||
_, ok := rawArgs["user"]
|
||||
if !ok {
|
||||
if _, ok := rawArgs["user"]; !ok {
|
||||
var zeroVal *bool
|
||||
return zeroVal, nil
|
||||
}
|
||||
@@ -594,11 +590,7 @@ func (ec *executionContext) dir_auth_argsOrganization(
|
||||
ctx context.Context,
|
||||
rawArgs map[string]any,
|
||||
) (*bool, error) {
|
||||
// We won't call the directive if the argument is null.
|
||||
// Set call_argument_directives_with_null to true to call directives
|
||||
// even if the argument is null.
|
||||
_, ok := rawArgs["organization"]
|
||||
if !ok {
|
||||
if _, ok := rawArgs["organization"]; !ok {
|
||||
var zeroVal *bool
|
||||
return zeroVal, nil
|
||||
}
|
||||
@@ -626,11 +618,7 @@ func (ec *executionContext) field_Mutation_addAPIKey_argsInput(
|
||||
ctx context.Context,
|
||||
rawArgs map[string]any,
|
||||
) (*model.InputAPIKey, error) {
|
||||
// We won't call the directive if the argument is null.
|
||||
// Set call_argument_directives_with_null to true to call directives
|
||||
// even if the argument is null.
|
||||
_, ok := rawArgs["input"]
|
||||
if !ok {
|
||||
if _, ok := rawArgs["input"]; !ok {
|
||||
var zeroVal *model.InputAPIKey
|
||||
return zeroVal, nil
|
||||
}
|
||||
@@ -658,11 +646,7 @@ func (ec *executionContext) field_Mutation_addOrganization_argsName(
|
||||
ctx context.Context,
|
||||
rawArgs map[string]any,
|
||||
) (string, error) {
|
||||
// We won't call the directive if the argument is null.
|
||||
// Set call_argument_directives_with_null to true to call directives
|
||||
// even if the argument is null.
|
||||
_, ok := rawArgs["name"]
|
||||
if !ok {
|
||||
if _, ok := rawArgs["name"]; !ok {
|
||||
var zeroVal string
|
||||
return zeroVal, nil
|
||||
}
|
||||
@@ -690,11 +674,7 @@ func (ec *executionContext) field_Mutation_updateSubGraph_argsInput(
|
||||
ctx context.Context,
|
||||
rawArgs map[string]any,
|
||||
) (model.InputSubGraph, error) {
|
||||
// We won't call the directive if the argument is null.
|
||||
// Set call_argument_directives_with_null to true to call directives
|
||||
// even if the argument is null.
|
||||
_, ok := rawArgs["input"]
|
||||
if !ok {
|
||||
if _, ok := rawArgs["input"]; !ok {
|
||||
var zeroVal model.InputSubGraph
|
||||
return zeroVal, nil
|
||||
}
|
||||
@@ -722,11 +702,7 @@ func (ec *executionContext) field_Query___type_argsName(
|
||||
ctx context.Context,
|
||||
rawArgs map[string]any,
|
||||
) (string, error) {
|
||||
// We won't call the directive if the argument is null.
|
||||
// Set call_argument_directives_with_null to true to call directives
|
||||
// even if the argument is null.
|
||||
_, ok := rawArgs["name"]
|
||||
if !ok {
|
||||
if _, ok := rawArgs["name"]; !ok {
|
||||
var zeroVal string
|
||||
return zeroVal, nil
|
||||
}
|
||||
@@ -759,11 +735,7 @@ func (ec *executionContext) field_Query_supergraph_argsRef(
|
||||
ctx context.Context,
|
||||
rawArgs map[string]any,
|
||||
) (string, error) {
|
||||
// We won't call the directive if the argument is null.
|
||||
// Set call_argument_directives_with_null to true to call directives
|
||||
// even if the argument is null.
|
||||
_, ok := rawArgs["ref"]
|
||||
if !ok {
|
||||
if _, ok := rawArgs["ref"]; !ok {
|
||||
var zeroVal string
|
||||
return zeroVal, nil
|
||||
}
|
||||
@@ -781,11 +753,7 @@ func (ec *executionContext) field_Query_supergraph_argsIsAfter(
|
||||
ctx context.Context,
|
||||
rawArgs map[string]any,
|
||||
) (*string, error) {
|
||||
// We won't call the directive if the argument is null.
|
||||
// Set call_argument_directives_with_null to true to call directives
|
||||
// even if the argument is null.
|
||||
_, ok := rawArgs["isAfter"]
|
||||
if !ok {
|
||||
if _, ok := rawArgs["isAfter"]; !ok {
|
||||
var zeroVal *string
|
||||
return zeroVal, nil
|
||||
}
|
||||
@@ -813,11 +781,7 @@ func (ec *executionContext) field___Type_enumValues_argsIncludeDeprecated(
|
||||
ctx context.Context,
|
||||
rawArgs map[string]any,
|
||||
) (bool, error) {
|
||||
// We won't call the directive if the argument is null.
|
||||
// Set call_argument_directives_with_null to true to call directives
|
||||
// even if the argument is null.
|
||||
_, ok := rawArgs["includeDeprecated"]
|
||||
if !ok {
|
||||
if _, ok := rawArgs["includeDeprecated"]; !ok {
|
||||
var zeroVal bool
|
||||
return zeroVal, nil
|
||||
}
|
||||
@@ -845,11 +809,7 @@ func (ec *executionContext) field___Type_fields_argsIncludeDeprecated(
|
||||
ctx context.Context,
|
||||
rawArgs map[string]any,
|
||||
) (bool, error) {
|
||||
// We won't call the directive if the argument is null.
|
||||
// Set call_argument_directives_with_null to true to call directives
|
||||
// even if the argument is null.
|
||||
_, ok := rawArgs["includeDeprecated"]
|
||||
if !ok {
|
||||
if _, ok := rawArgs["includeDeprecated"]; !ok {
|
||||
var zeroVal bool
|
||||
return zeroVal, nil
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user