(ctx context.Context, obj *model.Category)
| 73 | |
| 74 | type CategoryResolver interface { |
| 75 | Courses(ctx context.Context, obj *model.Category) ([]*model.Course, error) |
| 76 | } |
| 77 | type CourseResolver interface { |
| 78 | Category(ctx context.Context, obj *model.Course) (*model.Category, error) |
nothing calls this directly
no outgoing calls
no test coverage detected