From df144e727a858ed07e3c9328d91efe052c4781e1 Mon Sep 17 00:00:00 2001 From: Michael Muré Date: Mon, 13 Aug 2018 15:28:16 +0200 Subject: fix some linting trouble --- graphql/connections/gen_comment.go | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'graphql/connections/gen_comment.go') diff --git a/graphql/connections/gen_comment.go b/graphql/connections/gen_comment.go index 0253e831..57fad3af 100644 --- a/graphql/connections/gen_comment.go +++ b/graphql/connections/gen_comment.go @@ -11,14 +11,18 @@ import ( "github.com/MichaelMure/git-bug/graphql/models" ) +// BugCommentEdger define a function that take a bug.Comment and an offset and +// create an Edge. type BugCommentEdger func(value bug.Comment, offset int) Edge +// BugCommentConMaker define a function that create a models.CommentConnection type BugCommentConMaker func( edges []models.CommentEdge, nodes []bug.Comment, info models.PageInfo, totalCount int) (models.CommentConnection, error) +// BugCommentCon will paginate a source according to the input of a relay connection func BugCommentCon(source []bug.Comment, edger BugCommentEdger, conMaker BugCommentConMaker, input models.ConnectionInput) (models.CommentConnection, error) { var nodes []bug.Comment var edges []models.CommentEdge -- cgit