git-bug/api/graphql/models/edges.go

32 lines
677 B
Go
Raw Normal View History

package models
2018-08-13 16:28:16 +03:00
// GetCursor return the cursor entry of an edge
func (e OperationEdge) GetCursor() string {
return e.Cursor
}
2018-08-13 16:28:16 +03:00
// GetCursor return the cursor entry of an edge
func (e BugEdge) GetCursor() string {
return e.Cursor
}
2018-08-13 16:28:16 +03:00
// GetCursor return the cursor entry of an edge
func (e CommentEdge) GetCursor() string {
return e.Cursor
}
2018-09-29 21:58:25 +03:00
// GetCursor return the cursor entry of an edge
func (e TimelineItemEdge) 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
}