edges.go

 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 CommentEdge) GetCursor() string {
15	return e.Cursor
16}
17
18// GetCursor return the cursor entry of an edge
19func (e TimelineItemEdge) 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}