lazy_identity.go
1package connections
2
3// LazyIdentityEdge is a special relay edge used to implement a lazy loading connection
4type LazyIdentityEdge struct {
5 Id string
6 Cursor string
7}
8
9// GetCursor return the cursor of a LazyIdentityEdge
10func (lbe LazyIdentityEdge) GetCursor() string {
11 return lbe.Cursor
12}