From 08984e4324195615c0eb3312b298bd7323f2079e Mon Sep 17 00:00:00 2001 From: Philip Hughes Date: Tue, 10 Dec 2024 14:33:10 -0500 Subject: [PATCH] revert init template change --- init-templates/gqlgen.yml.gotmpl | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/init-templates/gqlgen.yml.gotmpl b/init-templates/gqlgen.yml.gotmpl index dd786f86ed0..e709df0a085 100644 --- a/init-templates/gqlgen.yml.gotmpl +++ b/init-templates/gqlgen.yml.gotmpl @@ -131,6 +131,11 @@ models: - github.com/99designs/gqlgen/graphql.Int - github.com/99designs/gqlgen/graphql.Int64 - github.com/99designs/gqlgen/graphql.Int32 + # gqlgen provides a default GraphQL UUID convenience wrapper for github.com/google/uuid + # but you can override this to provide your own GraphQL UUID implementation + UUID: + model: + - github.com/99designs/gqlgen/graphql.UUID # The GraphQL spec explicitly states that the Int type is a signed 32-bit # integer. Using Go int or int64 to represent it can lead to unexpected