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/graphql/models.Repository
10  RepositoryMutation:
11    model: github.com/MichaelMure/git-bug/graphql/models.RepositoryMutation
12  Bug:
13    model: github.com/MichaelMure/git-bug/bug.Snapshot
14  Comment:
15    model: github.com/MichaelMure/git-bug/bug.Comment
16  Person:
17    model: github.com/MichaelMure/git-bug/bug.Person
18    fields:
19      name:
20        resolver: true
21      email:
22        resolver: true
23      login:
24        resolver: true
25      avatarUrl:
26        resolver: true
27  Label:
28    model: github.com/MichaelMure/git-bug/bug.Label
29  Hash:
30    model: github.com/MichaelMure/git-bug/util/git.Hash
31  Operation:
32    model: github.com/MichaelMure/git-bug/bug.Operation
33  CreateOperation:
34    model: github.com/MichaelMure/git-bug/bug.CreateOperation
35  SetTitleOperation:
36    model: github.com/MichaelMure/git-bug/bug.SetTitleOperation
37  AddCommentOperation:
38    model: github.com/MichaelMure/git-bug/bug.AddCommentOperation
39  EditCommentOperation:
40    model: github.com/MichaelMure/git-bug/bug.EditCommentOperation
41  SetStatusOperation:
42    model: github.com/MichaelMure/git-bug/bug.SetStatusOperation
43  LabelChangeOperation:
44    model: github.com/MichaelMure/git-bug/bug.LabelChangeOperation
45  TimelineItem:
46    model: github.com/MichaelMure/git-bug/bug.TimelineItem
47  CommentHistoryStep:
48    model: github.com/MichaelMure/git-bug/bug.CommentHistoryStep
49  CreateTimelineItem:
50    model: github.com/MichaelMure/git-bug/bug.CreateTimelineItem
51  AddCommentTimelineItem:
52    model: github.com/MichaelMure/git-bug/bug.AddCommentTimelineItem
53  LabelChangeTimelineItem:
54    model: github.com/MichaelMure/git-bug/bug.LabelChangeTimelineItem
55  SetStatusTimelineItem:
56    model: github.com/MichaelMure/git-bug/bug.SetStatusTimelineItem
57  SetTitleTimelineItem:
58    model: github.com/MichaelMure/git-bug/bug.SetTitleTimelineItem