diff options
author | Michael Muré <michael.mure@consensys.net> | 2019-03-31 21:44:14 +0200 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2019-04-01 14:03:13 +0200 |
commit | 15c258cdc4ba37820362a44dfc2636ed1ff92b4c (patch) | |
tree | 0790e36bf4846b12b367f12670540eec6ee023f3 /graphql/connections/gen_bug.go | |
parent | e028b895aa21553937d732044b7bb0a15c5276f6 (diff) | |
download | git-bug-15c258cdc4ba37820362a44dfc2636ed1ff92b4c.tar.gz |
graphql: expose allIdentities, identities and userIdentity in the repo
Diffstat (limited to 'graphql/connections/gen_bug.go')
-rw-r--r-- | graphql/connections/gen_bug.go | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/graphql/connections/gen_bug.go b/graphql/connections/gen_bug.go index 000ff109..ba0a65fa 100644 --- a/graphql/connections/gen_bug.go +++ b/graphql/connections/gen_bug.go @@ -12,17 +12,17 @@ import ( // StringEdgeMaker define a function that take a string and an offset and // create an Edge. -type StringEdgeMaker func(value string, offset int) Edge +type LazyBugEdgeMaker func(value string, offset int) Edge -// StringConMaker define a function that create a models.BugConnection -type StringConMaker func( +// LazyBugConMaker define a function that create a models.BugConnection +type LazyBugConMaker 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, edgeMaker StringEdgeMaker, conMaker StringConMaker, input models.ConnectionInput) (models.BugConnection, error) { +// LazyBugCon will paginate a source according to the input of a relay connection +func LazyBugCon(source []string, edgeMaker LazyBugEdgeMaker, conMaker LazyBugConMaker, input models.ConnectionInput) (models.BugConnection, error) { var nodes []string var edges []LazyBugEdge var cursors []string |