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