-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgqlgen.yml
53 lines (48 loc) · 1.51 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
# Where are all the schema files located? globs are supported eg src/**/*.graphqls
schema:
- graphql/*.graphqls
# Where should the generated server code go?
exec:
filename: pkg/controller/graphql/generated.go
package: graphql
# Where should any generated models go?
model:
filename: pkg/domain/model/graphql.go
package: model
# Where should the resolver implementations go?
resolver:
layout: follow-schema
dir: pkg/controller/graphql
package: graphql
filename_template: "{name}.resolvers.go"
# Optional: turn on to not generate template comments above resolvers
# omit_template_comment: false
# 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:
# - "github.com/m-mizutani/graphqltest/graph/model"
# This section declares type mapping between the GraphQL and go type systems
#
# The first line in each type will be used as defaults for resolver arguments and
# modelgen, the others will be allowed when binding to fields. Configure them to
# your liking
models:
ID:
model:
- github.com/99designs/gqlgen/graphql.UUID
UUID:
model:
- github.com/99designs/gqlgen/graphql.UUID
WorkflowID:
model:
- github.com/secmon-lab/alertchain/pkg/domain/types.WorkflowID
AlertID:
model:
- github.com/secmon-lab/alertchain/pkg/domain/types.AlertID
Timestamp:
model:
- github.com/99designs/gqlgen/graphql.Time
WorkflowRecord:
fields:
actions:
resolver: true