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/lazy_bug.go | 2 ++ 1 file changed, 2 insertions(+) (limited to 'graphql/connections/lazy_bug.go') diff --git a/graphql/connections/lazy_bug.go b/graphql/connections/lazy_bug.go index 35dcb687..24eda0b6 100644 --- a/graphql/connections/lazy_bug.go +++ b/graphql/connections/lazy_bug.go @@ -1,10 +1,12 @@ package connections +// LazyBugEdge is a special relay edge used to implement a lazy loading connection type LazyBugEdge struct { Id string Cursor string } +// GetCursor return the cursor of a LazyBugEdge func (lbe LazyBugEdge) GetCursor() string { return lbe.Cursor } -- cgit v1.2.3