From b6185a7ecad3d4a5c0efb959d443071ed1ed7088 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thorben=20G=C3=BCnther?= Date: Thu, 20 Oct 2022 21:43:56 +0200 Subject: [PATCH] gqlgen: Upstream updates --- gqlgen.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/gqlgen.yml b/gqlgen.yml index 5d5b666..62ae85e 100644 --- a/gqlgen.yml +++ b/gqlgen.yml @@ -23,19 +23,26 @@ resolver: dir: graph package: graph -# Optional: turn on use `gqlgen:"fieldName"` tags in your models +# Optional: turn on use ` + "`" + `gqlgen:"fieldName"` + "`" + ` tags in your models # struct_tag: json # Optional: turn on to use []Thing instead of []*Thing # omit_slice_element_pointers: false +# Optional: turn off to make struct-type struct fields not use pointers +# e.g. type Thing struct { FieldA OtherThing } instead of { FieldA *OtherThing } +# struct_fields_always_pointers: true + +# Optional: turn off to make resolvers return values instead of pointers for structs +# resolvers_always_return_pointers: true + # Optional: set to speed up generation time by not performing a final validation pass. # skip_validation: true # gqlgen will search for any type names in the schema in these go packages # if they match it will use them, otherwise it will generate them. autobind: - - "git.xenrox.net/~xenrox/10man-api/graph/model" +# - "git.xenrox.net/~xenrox/10man-api/graph/model" # This section declares type mapping between the GraphQL and go type systems # -- 2.44.0