(ctx context.Context, sel ast.SelectionSet, v bool)
| 8562 | } |
| 8563 | |
| 8564 | func (ec *executionContext) marshalNBoolean2bool(ctx context.Context, sel ast.SelectionSet, v bool) graphql.Marshaler { |
| 8565 | res := graphql.MarshalBoolean(v) |
| 8566 | if res == graphql.Null { |
| 8567 | if !graphql.HasFieldError(ctx, graphql.GetFieldContext(ctx)) { |
| 8568 | ec.Errorf(ctx, "the requested element is null which the schema does not allow") |
| 8569 | } |
| 8570 | } |
| 8571 | return res |
| 8572 | } |
| 8573 | |
| 8574 | func (ec *executionContext) unmarshalNFloat2float64(ctx context.Context, v interface{}) (float64, error) { |
| 8575 | res, err := graphql.UnmarshalFloatContext(ctx, v) |
no outgoing calls
no test coverage detected