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  Label:
19    model: github.com/MichaelMure/git-bug/bug.Label
20  Hash:
21    model: github.com/MichaelMure/git-bug/util/git.Hash
22  Operation:
23    model: github.com/MichaelMure/git-bug/bug.Operation
24  CreateOperation:
25    model: github.com/MichaelMure/git-bug/bug.CreateOperation
26  SetTitleOperation:
27    model: github.com/MichaelMure/git-bug/bug.SetTitleOperation
28  AddCommentOperation:
29    model: github.com/MichaelMure/git-bug/bug.AddCommentOperation
30  SetStatusOperation:
31    model: github.com/MichaelMure/git-bug/bug.SetStatusOperation
32  LabelChangeOperation:
33    model: github.com/MichaelMure/git-bug/bug.LabelChangeOperation
34  TimelineItem:
35    model: github.com/MichaelMure/git-bug/bug.TimelineItem
36  CommentHistoryStep:
37    model: github.com/MichaelMure/git-bug/bug.CommentHistoryStep
38  CreateTimelineItem:
39    model: github.com/MichaelMure/git-bug/bug.CreateTimelineItem
40  CommentTimelineItem:
41    model: github.com/MichaelMure/git-bug/bug.CommentTimelineItem