package connections
// LazyBugEdge is a special relay edge used to implement a lazy loading connectiontype LazyBugEdge struct{
Id string
Cursor string}// GetCursor return the cursor of a LazyBugEdgefunc(lbe LazyBugEdge)GetCursor()string{return lbe.Cursor
}