aboutsummaryrefslogtreecommitdiffstats
path: root/graphql/gqlgen.yml
blob: 34eb13c2b8eb81e43d459f063ec20b456ef501ba (plain) (blame)
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
schema: schema.graphql
exec:
  filename: graph/gen_graph.go
model:
  filename: models/gen_models.go

models:
  Repository:
    model: github.com/MichaelMure/git-bug/graphql/models.Repository
  RepositoryMutation:
    model: github.com/MichaelMure/git-bug/graphql/models.RepositoryMutation
  Bug:
    model: github.com/MichaelMure/git-bug/bug.Snapshot
  Comment:
    model: github.com/MichaelMure/git-bug/bug.Comment
  Person:
    model: github.com/MichaelMure/git-bug/bug.Person
  Label:
    model: github.com/MichaelMure/git-bug/bug.Label
  Hash:
    model: github.com/MichaelMure/git-bug/util/git.Hash
  Operation:
    model: github.com/MichaelMure/git-bug/bug.Operation
  CreateOperation:
    model: github.com/MichaelMure/git-bug/operations.CreateOperation
  SetTitleOperation:
    model: github.com/MichaelMure/git-bug/operations.SetTitleOperation
  AddCommentOperation:
    model: github.com/MichaelMure/git-bug/operations.AddCommentOperation
  SetStatusOperation:
    model: github.com/MichaelMure/git-bug/operations.SetStatusOperation
  LabelChangeOperation:
    model: github.com/MichaelMure/git-bug/operations.LabelChangeOperation