diff options
Diffstat (limited to 'graphql/resolvers/bug.go')
-rw-r--r-- | graphql/resolvers/bug.go | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/graphql/resolvers/bug.go b/graphql/resolvers/bug.go index 76eed55d..7af04934 100644 --- a/graphql/resolvers/bug.go +++ b/graphql/resolvers/bug.go @@ -6,9 +6,12 @@ import ( "github.com/MichaelMure/git-bug/bug" "github.com/MichaelMure/git-bug/graphql/connections" + "github.com/MichaelMure/git-bug/graphql/graph" "github.com/MichaelMure/git-bug/graphql/models" ) +var _ graph.BugResolver = &bugResolver{} + type bugResolver struct{} func (bugResolver) Status(ctx context.Context, obj *bug.Snapshot) (models.Status, error) { @@ -39,7 +42,7 @@ func (bugResolver) Comments(ctx context.Context, obj *bug.Snapshot, after *strin }, nil } - return connections.BugCommentCon(obj.Comments, edger, conMaker, input) + return connections.CommentCon(obj.Comments, edger, conMaker, input) } func (bugResolver) Operations(ctx context.Context, obj *bug.Snapshot, after *string, before *string, first *int, last *int) (models.OperationConnection, error) { @@ -66,7 +69,7 @@ func (bugResolver) Operations(ctx context.Context, obj *bug.Snapshot, after *str }, nil } - return connections.BugOperationCon(obj.Operations, edger, conMaker, input) + return connections.OperationCon(obj.Operations, edger, conMaker, input) } func (bugResolver) Timeline(ctx context.Context, obj *bug.Snapshot, after *string, before *string, first *int, last *int) (models.TimelineItemConnection, error) { @@ -93,7 +96,7 @@ func (bugResolver) Timeline(ctx context.Context, obj *bug.Snapshot, after *strin }, nil } - return connections.BugTimelineItemCon(obj.Timeline, edger, conMaker, input) + return connections.TimelineItemCon(obj.Timeline, edger, conMaker, input) } func (bugResolver) LastEdit(ctx context.Context, obj *bug.Snapshot) (time.Time, error) { |