~xenrox/10man-api

b6185a7ecad3d4a5c0efb959d443071ed1ed7088 — Thorben Günther 1 year, 6 months ago c8feb5f
gqlgen: Upstream updates
1 files changed, 9 insertions(+), 2 deletions(-)

M gqlgen.yml
M gqlgen.yml => gqlgen.yml +9 -2
@@ 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
#