gqlgen.yml

 1schema: "schema/*.graphql"
 2exec:
 3  filename: graph/gen_graph.go
 4model:
 5  filename: models/gen_models.go
 6
 7models:
 8  Repository:
 9    model: github.com/MichaelMure/git-bug/api/graphql/models.Repository
10  RepositoryMutation:
11    model: github.com/MichaelMure/git-bug/api/graphql/models.RepositoryMutation
12  Bug:
13    model: github.com/MichaelMure/git-bug/api/graphql/models.BugWrapper
14    fields:
15      actors:
16        resolver: true
17      participants:
18        resolver: true
19      comments:
20        resolver: true
21      timeline:
22        resolver: true
23      operations:
24        resolver: true
25  Color:
26    model: image/color.RGBA
27  Comment:
28    model: github.com/MichaelMure/git-bug/bug.Comment
29  Identity:
30    model: github.com/MichaelMure/git-bug/api/graphql/models.IdentityWrapper
31  Label:
32    model: github.com/MichaelMure/git-bug/bug.Label
33  Hash:
34    model: github.com/MichaelMure/git-bug/repository.Hash
35  Operation:
36    model: github.com/MichaelMure/git-bug/entity/dag.Operation
37  CreateOperation:
38    model: github.com/MichaelMure/git-bug/bug.CreateOperation
39  SetTitleOperation:
40    model: github.com/MichaelMure/git-bug/bug.SetTitleOperation
41  AddCommentOperation:
42    model: github.com/MichaelMure/git-bug/bug.AddCommentOperation
43  EditCommentOperation:
44    model: github.com/MichaelMure/git-bug/bug.EditCommentOperation
45  SetStatusOperation:
46    model: github.com/MichaelMure/git-bug/bug.SetStatusOperation
47  LabelChangeOperation:
48    model: github.com/MichaelMure/git-bug/bug.LabelChangeOperation
49  TimelineItem:
50    model: github.com/MichaelMure/git-bug/bug.TimelineItem
51  CommentHistoryStep:
52    model: github.com/MichaelMure/git-bug/bug.CommentHistoryStep
53  CreateTimelineItem:
54    model: github.com/MichaelMure/git-bug/bug.CreateTimelineItem
55  AddCommentTimelineItem:
56    model: github.com/MichaelMure/git-bug/bug.AddCommentTimelineItem
57  LabelChangeTimelineItem:
58    model: github.com/MichaelMure/git-bug/bug.LabelChangeTimelineItem
59  SetStatusTimelineItem:
60    model: github.com/MichaelMure/git-bug/bug.SetStatusTimelineItem
61  SetTitleTimelineItem:
62    model: github.com/MichaelMure/git-bug/bug.SetTitleTimelineItem
63  LabelChangeResult:
64    model: github.com/MichaelMure/git-bug/bug.LabelChangeResult