diff options
author | Amine Hilaly <hilalyamine@gmail.com> | 2019-04-09 17:43:17 +0200 |
---|---|---|
committer | Amine Hilaly <hilalyamine@gmail.com> | 2019-04-09 17:43:17 +0200 |
commit | 6e8496f4c1767ca8a8b95716a04f1b492bef7397 (patch) | |
tree | b1fecc50675159ef48056166ce906ca7f38cb7ea /graphql/connections/gen_timeline.go | |
parent | 30efc99f4493f3a09e94bf322cbf8ef844beea13 (diff) | |
download | git-bug-6e8496f4c1767ca8a8b95716a04f1b492bef7397.tar.gz |
Support gqlgen v0.8.3
Diffstat (limited to 'graphql/connections/gen_timeline.go')
-rw-r--r-- | graphql/connections/gen_timeline.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/graphql/connections/gen_timeline.go b/graphql/connections/gen_timeline.go index 1a4b2fe5..ad3fbf5b 100644 --- a/graphql/connections/gen_timeline.go +++ b/graphql/connections/gen_timeline.go @@ -20,10 +20,10 @@ type TimelineItemConMaker func( edges []models.TimelineItemEdge, nodes []bug.TimelineItem, info models.PageInfo, - totalCount int) (models.TimelineItemConnection, error) + totalCount int) (*models.TimelineItemConnection, error) // TimelineItemCon will paginate a source according to the input of a relay connection -func TimelineItemCon(source []bug.TimelineItem, edgeMaker TimelineItemEdgeMaker, conMaker TimelineItemConMaker, input models.ConnectionInput) (models.TimelineItemConnection, error) { +func TimelineItemCon(source []bug.TimelineItem, edgeMaker TimelineItemEdgeMaker, conMaker TimelineItemConMaker, input models.ConnectionInput) (*models.TimelineItemConnection, error) { var nodes []bug.TimelineItem var edges []models.TimelineItemEdge var cursors []string |