aboutsummaryrefslogtreecommitdiffstats
path: root/api/graphql/models/edges.go
blob: 95509970912a93dbea8f6494e7c58799559a8ad9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
package models

// GetCursor return the cursor entry of an edge
func (e OperationEdge) GetCursor() string {
	return e.Cursor
}

// GetCursor return the cursor entry of an edge
func (e BugEdge) GetCursor() string {
	return e.Cursor
}

// GetCursor return the cursor entry of an edge
func (e BugCommentEdge) GetCursor() string {
	return e.Cursor
}

// GetCursor return the cursor entry of an edge
func (e BugTimelineItemEdge) GetCursor() string {
	return e.Cursor
}

// GetCursor return the cursor entry of an edge
func (e IdentityEdge) GetCursor() string {
	return e.Cursor
}

// GetCursor return the cursor entry of an edge
func (e LabelEdge) GetCursor() string {
	return e.Cursor
}