aboutsummaryrefslogtreecommitdiffhomepage
path: root/backend/gqlgen.yml
blob: 98f7b80a721cf1c3da02a1ed6a5edc9ed766b0bf (plain)
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
schema:
  - ../common/graphql/schema.graphql

exec:
  package: graphql
  layout: single-file
  filename: graphql/generated.go

model:
  package: model
  filename: graphql/model/generated.go

resolver:
  package: graphql
  layout: single-file
  filename: graphql/resolvers.go

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.Int32
  Int64:
    model:
      - github.com/99designs/gqlgen/graphql.Int
      - github.com/99designs/gqlgen/graphql.Int64