(ctx context.Context, v interface{})
| 8557 | } |
| 8558 | |
| 8559 | func (ec *executionContext) unmarshalNBoolean2bool(ctx context.Context, v interface{}) (bool, error) { |
| 8560 | res, err := graphql.UnmarshalBoolean(v) |
| 8561 | return res, graphql.ErrorOnPath(ctx, err) |
| 8562 | } |
| 8563 | |
| 8564 | func (ec *executionContext) marshalNBoolean2bool(ctx context.Context, sel ast.SelectionSet, v bool) graphql.Marshaler { |
| 8565 | res := graphql.MarshalBoolean(v) |
no outgoing calls
no test coverage detected