aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/99designs/gqlgen/codegen/args.gotpl
diff options
context:
space:
mode:
authorAmine Hilaly <hilalyamine@gmail.com>2019-08-17 00:48:08 +0200
committerAmine Hilaly <hilalyamine@gmail.com>2019-08-17 00:48:08 +0200
commitd571deef57b682f92e71f9374c2c59893db811af (patch)
treeb17be26cfd358b1518010c9d7073fdbf0caa1561 /vendor/github.com/99designs/gqlgen/codegen/args.gotpl
parenta89355e7fbcaaa5efb07d43c1f19a4be2e2c1537 (diff)
downloadgit-bug-d571deef57b682f92e71f9374c2c59893db811af.tar.gz
vendor: upgrade github.com/99designs/gqlgen to v0.9.2
Diffstat (limited to 'vendor/github.com/99designs/gqlgen/codegen/args.gotpl')
-rw-r--r--vendor/github.com/99designs/gqlgen/codegen/args.gotpl4
1 files changed, 4 insertions, 0 deletions
diff --git a/vendor/github.com/99designs/gqlgen/codegen/args.gotpl b/vendor/github.com/99designs/gqlgen/codegen/args.gotpl
index c76bf0f7..318f1ff4 100644
--- a/vendor/github.com/99designs/gqlgen/codegen/args.gotpl
+++ b/vendor/github.com/99designs/gqlgen/codegen/args.gotpl
@@ -14,6 +14,10 @@ func (ec *executionContext) {{ $name }}(ctx context.Context, rawArgs map[string]
}
if data, ok := tmp.({{ $arg.TypeReference.GO | ref }}) ; ok {
arg{{$i}} = data
+ {{- if $arg.TypeReference.IsNilable }}
+ } else if tmp == nil {
+ arg{{$i}} = nil
+ {{- end }}
} else {
return nil, fmt.Errorf(`unexpected type %T from directive, should be {{ $arg.TypeReference.GO }}`, tmp)
}