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 BoardColumnEdge) GetCursor() string {
10	return e.Cursor
11}
12
13// GetCursor return the cursor entry of an edge
14func (e BoardItemEdge) GetCursor() string {
15	return e.Cursor
16}
17
18// GetCursor return the cursor entry of an edge
19func (e BugEdge) GetCursor() string {
20	return e.Cursor
21}
22
23// GetCursor return the cursor entry of an edge
24func (e BugCommentEdge) GetCursor() string {
25	return e.Cursor
26}
27
28// GetCursor return the cursor entry of an edge
29func (e BugTimelineItemEdge) GetCursor() string {
30	return e.Cursor
31}
32
33// GetCursor return the cursor entry of an edge
34func (e IdentityEdge) GetCursor() string {
35	return e.Cursor
36}
37
38// GetCursor return the cursor entry of an edge
39func (e LabelEdge) GetCursor() string {
40	return e.Cursor
41}