> For the complete documentation index, see [llms.txt](https://demystifyfp.gitbook.io/fstoolkit-errorhandling/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://demystifyfp.gitbook.io/fstoolkit-errorhandling/fstoolkit.errorhandling.jobresult/jobresult/ignore.md).

# ignore

### JobResult.ignore

Namespace: `FsToolkit.ErrorHandling`

Function Signature:

```fsharp
Job<Result<'a, 'b>> -> Job<Result<unit, 'b>>
```

This is a shortcut for `JobResult.map ignore`.

### Examples

#### Example 1

```fsharp
let savePost : CreatePostRequest -> Job<Result<PostId, exn>>
```

We can call this with the `do!` syntax inside a computation expression using `JobResult.ignore` as below:

```fsharp
let makePost = jobResult {
  do! savePost createPostRequest |> JobResult.ignore
}
```
