aboutsummaryrefslogtreecommitdiffstats
path: root/graphql/resolvers/root.go
diff options
context:
space:
mode:
authorMichael Muré <batolettre@gmail.com>2020-02-09 02:56:37 +0100
committerGitHub <noreply@github.com>2020-02-09 02:56:37 +0100
commit3caffeef4d2ed25d4eb5d4bfd262f4fc3b92561f (patch)
tree40730a7ff92a420af65d9d2560a07d47a6a72174 /graphql/resolvers/root.go
parent9e1a987b4d94dc5c2115423ede5954d4faf1d342 (diff)
parent2af456f5e05f242d9e13049e038b9bd2d6dfc1cc (diff)
downloadgit-bug-3caffeef4d2ed25d4eb5d4bfd262f4fc3b92561f.tar.gz
Merge pull request #316 from MichaelMure/lazy-graphql
graphql: use the cache in priority for fast browsing in the WebUI
Diffstat (limited to 'graphql/resolvers/root.go')
-rw-r--r--graphql/resolvers/root.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/graphql/resolvers/root.go b/graphql/resolvers/root.go
index 3b129f3b..9973ff59 100644
--- a/graphql/resolvers/root.go
+++ b/graphql/resolvers/root.go
@@ -42,6 +42,10 @@ func (RootResolver) Color() graph.ColorResolver {
return &colorResolver{}
}
+func (r RootResolver) Comment() graph.CommentResolver {
+ return &commentResolver{}
+}
+
func (RootResolver) Label() graph.LabelResolver {
return &labelResolver{}
}