(ctx context.Context, v interface{})
| 9322 | } |
| 9323 | |
| 9324 | func (ec *executionContext) unmarshalOBoolean2bool(ctx context.Context, v interface{}) (bool, error) { |
| 9325 | res, err := graphql.UnmarshalBoolean(v) |
| 9326 | return res, graphql.ErrorOnPath(ctx, err) |
| 9327 | } |
| 9328 | |
| 9329 | func (ec *executionContext) marshalOBoolean2bool(ctx context.Context, sel ast.SelectionSet, v bool) graphql.Marshaler { |
| 9330 | res := graphql.MarshalBoolean(v) |
no outgoing calls
no test coverage detected