summaryrefslogtreecommitdiffstatshomepage
path: root/graphql/connections/lazy_bug.go
diff options
context:
space:
mode:
Diffstat (limited to 'graphql/connections/lazy_bug.go')
-rw-r--r--graphql/connections/lazy_bug.go10
1 files changed, 10 insertions, 0 deletions
diff --git a/graphql/connections/lazy_bug.go b/graphql/connections/lazy_bug.go
new file mode 100644
index 00000000..35dcb687
--- /dev/null
+++ b/graphql/connections/lazy_bug.go
@@ -0,0 +1,10 @@
+package connections
+
+type LazyBugEdge struct {
+ Id string
+ Cursor string
+}
+
+func (lbe LazyBugEdge) GetCursor() string {
+ return lbe.Cursor
+}