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_bug.go | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'graphql/connections/gen_bug.go') diff --git a/graphql/connections/gen_bug.go b/graphql/connections/gen_bug.go index 9224c696..e9654986 100644 --- a/graphql/connections/gen_bug.go +++ b/graphql/connections/gen_bug.go @@ -10,14 +10,18 @@ import ( "github.com/MichaelMure/git-bug/graphql/models" ) +// StringEdger define a function that take a string and an offset and +// create an Edge. type StringEdger func(value string, offset int) Edge +// StringConMaker define a function that create a models.BugConnection type StringConMaker func( edges []LazyBugEdge, nodes []string, info models.PageInfo, totalCount int) (models.BugConnection, error) +// StringCon will paginate a source according to the input of a relay connection func StringCon(source []string, edger StringEdger, conMaker StringConMaker, input models.ConnectionInput) (models.BugConnection, error) { var nodes []string var edges []LazyBugEdge -- cgit v1.2.3