-
Notifications
You must be signed in to change notification settings - Fork 5
/
gqlgen.yml
37 lines (30 loc) · 794 Bytes
/
gqlgen.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# Where are all the schema files located? globs are supported eg src/**/*.graphqls
schema:
- gql/*.graphql
exec:
filename: gql/gen/generated.go
package: gen
model:
filename: gql/gen/models_gen.go
package: gen
resolver:
filename: gql/resolver.go
type: Resolver
package: gql
autobind: []
# resolver:
# layout: follow-schema
# dir: graph
# package: graph
# models:
# ID:
# model:
# - github.com/99designs/gqlgen/graphql.ID
# - github.com/99designs/gqlgen/graphql.Int
# - github.com/99designs/gqlgen/graphql.Int64
# - github.com/99designs/gqlgen/graphql.Int32
# Int:
# model:
# - github.com/99designs/gqlgen/graphql.Int
# - github.com/99designs/gqlgen/graphql.Int64
# - github.com/99designs/gqlgen/graphql.Int32