lazy_bug.go

 1package connections
 2
 3// LazyBugEdge is a special relay edge used to implement a lazy loading connection
 4type LazyBugEdge struct {
 5	Id     string
 6	Cursor string
 7}
 8
 9// GetCursor return the cursor of a LazyBugEdge
10func (lbe LazyBugEdge) GetCursor() string {
11	return lbe.Cursor
12}