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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
package resolvers
import (
"context"
"github.com/MichaelMure/git-bug/bug"
"github.com/MichaelMure/git-bug/cache"
)
type bugResolver struct {
cache cache.Cacher
}
func (bugResolver) Status(ctx context.Context, obj *bug.Snapshot) (Status, error) {
return convertStatus(obj.Status)
}
func (bugResolver) Comments(ctx context.Context, obj *bug.Snapshot, input ConnectionInput) (CommentConnection, error) {
var connection CommentConnection
edger := func(comment bug.Comment, offset int) Edge {
return CommentEdge{
Node: comment,
Cursor: offsetToCursor(offset),
}
}
edges, pageInfo, err := BugCommentPaginate(obj.Comments, edger, input)
if err != nil {
return connection, err
}
connection.Edges = edges
connection.PageInfo = pageInfo
connection.TotalCount = len(obj.Comments)
return connection, nil
}
func (bugResolver) Operations(ctx context.Context, obj *bug.Snapshot, input ConnectionInput) (OperationConnection, error) {
var connection OperationConnection
edger := func(op bug.Operation, offset int) Edge {
return OperationEdge{
Node: op.(OperationUnion),
Cursor: offsetToCursor(offset),
}
}
edges, pageInfo, err := BugOperationPaginate(obj.Operations, edger, input)
if err != nil {
return connection, err
}
connection.Edges = edges
connection.PageInfo = pageInfo
connection.TotalCount = len(obj.Operations)
return connection, nil
}
|