diff options
author | Michael Muré <batolettre@gmail.com> | 2018-09-29 20:58:25 +0200 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2018-09-29 20:59:25 +0200 |
commit | 36ebbe0cf4078070c3a6710f2e1f781c03de3d1a (patch) | |
tree | 1c739320485c55d2b68e766d6f15609c86a0eefe /graphql/connections/connections.go | |
parent | c46d01f8c10e6363b680fa6876e91bd8eaf3bb3e (diff) | |
download | git-bug-36ebbe0cf4078070c3a6710f2e1f781c03de3d1a.tar.gz |
graphql: expose the new Timeline
Diffstat (limited to 'graphql/connections/connections.go')
-rw-r--r-- | graphql/connections/connections.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/graphql/connections/connections.go b/graphql/connections/connections.go index de5b8f1a..68608116 100644 --- a/graphql/connections/connections.go +++ b/graphql/connections/connections.go @@ -1,6 +1,7 @@ //go:generate genny -in=connection_template.go -out=gen_bug.go gen "NodeType=string EdgeType=LazyBugEdge ConnectionType=models.BugConnection" //go:generate genny -in=connection_template.go -out=gen_operation.go gen "NodeType=bug.Operation EdgeType=models.OperationEdge ConnectionType=models.OperationConnection" //go:generate genny -in=connection_template.go -out=gen_comment.go gen "NodeType=bug.Comment EdgeType=models.CommentEdge ConnectionType=models.CommentConnection" +//go:generate genny -in=connection_template.go -out=gen_timeline.go gen "NodeType=bug.TimelineItem EdgeType=models.TimelineItemEdge ConnectionType=models.TimelineItemConnection" // Package connections implement a generic GraphQL relay connection package connections |