blob: 34ba579a6fe9cb13c6fcf0249d83c60a0538ac2a (
plain) (
tree)
|
|
package connections
// LazyIdentityEdge is a special relay edge used to implement a lazy loading connection
type LazyIdentityEdge struct {
Id string
Cursor string
}
// GetCursor return the cursor of a LazyIdentityEdge
func (lbe LazyIdentityEdge) GetCursor() string {
return lbe.Cursor
}
|