(_ context.Context, field graphql.CollectedField)
| 691 | } |
| 692 | |
| 693 | func (ec *executionContext) fieldContext_Bug_title(_ context.Context, field graphql.CollectedField) (fc *graphql.FieldContext, err error) { |
| 694 | fc = &graphql.FieldContext{ |
| 695 | Object: "Bug", |
| 696 | Field: field, |
| 697 | IsMethod: true, |
| 698 | IsResolver: false, |
| 699 | Child: func(ctx context.Context, field graphql.CollectedField) (*graphql.FieldContext, error) { |
| 700 | return nil, errors.New("field of type String does not have child fields") |
| 701 | }, |
| 702 | } |
| 703 | return fc, nil |
| 704 | } |
| 705 | |
| 706 | func (ec *executionContext) _Bug_labels(ctx context.Context, field graphql.CollectedField, obj models.BugWrapper) (ret graphql.Marshaler) { |
| 707 | fc, err := ec.fieldContext_Bug_labels(ctx, field) |
no test coverage detected