1schema: schema.graphql
2exec:
3 filename: resolvers/generated_graph.go
4model:
5 filename: resolvers/generated_model.go
6
7models:
8 Repository:
9 fields:
10 bug:
11 resolver: true
12 allBugs:
13 resolver: true
14# model: github.com/MichaelMure/git-bug/graphql2/resolvers.repoResolver
15 Bug:
16 model: github.com/MichaelMure/git-bug/bug.Snapshot
17 Comment:
18 model: github.com/MichaelMure/git-bug/bug.Comment
19 Person:
20 model: github.com/MichaelMure/git-bug/bug.Person
21 Label:
22 model: github.com/MichaelMure/git-bug/bug.Label
23 CreateOperation:
24 model: github.com/MichaelMure/git-bug/bug/operations.CreateOperation
25 SetTitleOperation:
26 model: github.com/MichaelMure/git-bug/bug/operations.SetTitleOperation
27 AddCommentOperation:
28 model: github.com/MichaelMure/git-bug/bug/operations.AddCommentOperation
29 SetStatusOperation:
30 model: github.com/MichaelMure/git-bug/bug/operations.SetStatusOperation
31 LabelChangeOperation:
32 model: github.com/MichaelMure/git-bug/bug/operations.LabelChangeOperation