From 03c64ce1b33bca69111852d36b7bcd545d29f678 Mon Sep 17 00:00:00 2001 From: Richard Lindhout Date: Wed, 20 May 2020 21:33:36 +0200 Subject: [PATCH] Bugfix for wrong graphql type when using custom scalars in gqlgen --- convert_test.go | 1 - 1 file changed, 1 deletion(-) diff --git a/convert_test.go b/convert_test.go index d5158c5..ad2661a 100644 --- a/convert_test.go +++ b/convert_test.go @@ -10,7 +10,6 @@ func TestShortType(t *testing.T) { testShortType(t, "*gitlab.com/product/app/backend/graphql_models.FlowWhere", "*FlowWhere") testShortType(t, "*github.com/web-ridge/go-utils/boilergql/boilergql.GeoPoint", "*GeoPoint") testShortType(t, "github.com/web-ridge/go-utils/boilergql/boilergql.GeoPoint", "GeoPoint") - testShortType(t, "*string", "*string") testShortType(t, "string", "string") testShortType(t, "*time.Time", "*time.Time")