diff options
Diffstat (limited to 'api/graphql/models/edges.go')
-rw-r--r-- | api/graphql/models/edges.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/api/graphql/models/edges.go b/api/graphql/models/edges.go index 6a331e3e..95509970 100644 --- a/api/graphql/models/edges.go +++ b/api/graphql/models/edges.go @@ -11,12 +11,12 @@ func (e BugEdge) GetCursor() string { } // GetCursor return the cursor entry of an edge -func (e CommentEdge) GetCursor() string { +func (e BugCommentEdge) GetCursor() string { return e.Cursor } // GetCursor return the cursor entry of an edge -func (e TimelineItemEdge) GetCursor() string { +func (e BugTimelineItemEdge) GetCursor() string { return e.Cursor } |