mirror of
https://github.com/MichaelMure/git-bug.git
synced 2024-12-15 18:23:08 +03:00
13 lines
276 B
Go
13 lines
276 B
Go
package connections
|
|
|
|
// LazyBugEdge is a special relay edge used to implement a lazy loading connection
|
|
type LazyBugEdge struct {
|
|
Id string
|
|
Cursor string
|
|
}
|
|
|
|
// GetCursor return the cursor of a LazyBugEdge
|
|
func (lbe LazyBugEdge) GetCursor() string {
|
|
return lbe.Cursor
|
|
}
|