aboutsummaryrefslogtreecommitdiffstats
path: root/graphql/models/edges.go
blob: 7de76edf3e24919eeccaac7915432e848a392018 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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 CommentEdge) GetCursor() string {
	return e.Cursor
}