package connections
import"github.com/MichaelMure/git-bug/entity"// LazyBugEdge is a special relay edge used to implement a lazy loading connectiontype LazyBugEdge struct{
Id entity.Id
Cursor string}// GetCursor return the cursor of a LazyBugEdgefunc(lbe LazyBugEdge)GetCursor()string{return lbe.Cursor
}