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