git-bug/graphql/connections/lazy_bug.go

13 lines
276 B
Go
Raw Normal View History

package connections
2018-08-13 16:28:16 +03:00
// LazyBugEdge is a special relay edge used to implement a lazy loading connection
type LazyBugEdge struct {
Id string
Cursor string
}
2018-08-13 16:28:16 +03:00
// GetCursor return the cursor of a LazyBugEdge
func (lbe LazyBugEdge) GetCursor() string {
return lbe.Cursor
}