1package models
 2
 3// GetCursor return the cursor entry of an edge
 4func (e OperationEdge) GetCursor() string {
 5	return e.Cursor
 6}
 7
 8// GetCursor return the cursor entry of an edge
 9func (e BugEdge) GetCursor() string {
10	return e.Cursor
11}
12
13// GetCursor return the cursor entry of an edge
14func (e BugCommentEdge) GetCursor() string {
15	return e.Cursor
16}
17
18// GetCursor return the cursor entry of an edge
19func (e BugTimelineItemEdge) GetCursor() string {
20	return e.Cursor
21}
22
23// GetCursor return the cursor entry of an edge
24func (e IdentityEdge) GetCursor() string {
25	return e.Cursor
26}
27
28// GetCursor return the cursor entry of an edge
29func (e LabelEdge) GetCursor() string {
30	return e.Cursor
31}