(_ context.Context, obj models.BugWrapper)
| 15 | type bugResolver struct{} |
| 16 | |
| 17 | func (bugResolver) HumanID(_ context.Context, obj models.BugWrapper) (string, error) { |
| 18 | return obj.Id().Human(), nil |
| 19 | } |
| 20 | |
| 21 | func (bugResolver) Comments(_ context.Context, obj models.BugWrapper, after *string, before *string, first *int, last *int) (*models.BugCommentConnection, error) { |
| 22 | input := models.ConnectionInput{ |