2018-07-29 20:37:06 +03:00
|
|
|
package models
|
|
|
|
|
2018-08-13 16:28:16 +03:00
|
|
|
// GetCursor return the cursor entry of an edge
|
2018-07-29 20:37:06 +03:00
|
|
|
func (e OperationEdge) GetCursor() string {
|
|
|
|
return e.Cursor
|
|
|
|
}
|
|
|
|
|
2018-08-13 16:28:16 +03:00
|
|
|
// GetCursor return the cursor entry of an edge
|
2018-07-29 20:37:06 +03:00
|
|
|
func (e BugEdge) GetCursor() string {
|
|
|
|
return e.Cursor
|
|
|
|
}
|
|
|
|
|
2018-08-13 16:28:16 +03:00
|
|
|
// GetCursor return the cursor entry of an edge
|
2018-07-29 20:37:06 +03:00
|
|
|
func (e CommentEdge) GetCursor() string {
|
|
|
|
return e.Cursor
|
|
|
|
}
|
2018-09-29 21:58:25 +03:00
|
|
|
|
|
|
|
// GetCursor return the cursor entry of an edge
|
|
|
|
func (e TimelineItemEdge) GetCursor() string {
|
|
|
|
return e.Cursor
|
|
|
|
}
|
2019-03-31 22:44:14 +03:00
|
|
|
|
|
|
|
// GetCursor return the cursor entry of an edge
|
|
|
|
func (e IdentityEdge) GetCursor() string {
|
|
|
|
return e.Cursor
|
|
|
|
}
|
2019-09-04 22:04:05 +03:00
|
|
|
|
|
|
|
// GetCursor return the cursor entry of an edge
|
|
|
|
func (e LabelEdge) GetCursor() string {
|
|
|
|
return e.Cursor
|
|
|
|
}
|