From d571deef57b682f92e71f9374c2c59893db811af Mon Sep 17 00:00:00 2001 From: Amine Hilaly Date: Sat, 17 Aug 2019 00:48:08 +0200 Subject: vendor: upgrade github.com/99designs/gqlgen to v0.9.2 --- vendor/github.com/99designs/gqlgen/codegen/input.gotpl | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'vendor/github.com/99designs/gqlgen/codegen/input.gotpl') diff --git a/vendor/github.com/99designs/gqlgen/codegen/input.gotpl b/vendor/github.com/99designs/gqlgen/codegen/input.gotpl index b51d53a2..bdf3622c 100644 --- a/vendor/github.com/99designs/gqlgen/codegen/input.gotpl +++ b/vendor/github.com/99designs/gqlgen/codegen/input.gotpl @@ -25,6 +25,10 @@ } if data, ok := tmp.({{ $field.TypeReference.GO | ref }}) ; ok { it.{{$field.GoFieldName}} = data + {{- if $field.TypeReference.IsNilable }} + } else if tmp == nil { + it.{{$field.GoFieldName}} = nil + {{- end }} } else { return it, fmt.Errorf(`unexpected type %T from directive, should be {{ $field.TypeReference.GO }}`, tmp) } -- cgit