> 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/bind.md).

# bind

### JobResult.bind

Namespace: `FsToolkit.ErrorHandling`

Function Signature:

```fsharp
('a -> Job<Result<'b, 'c>>)
  -> Job<Result<'a, 'c>>
  -> Job<Result<'b, 'c>>
```

### Examples

Note: Many use-cases requiring `bind` operations can also be solved using [the `jobResult` computation expression](/fstoolkit-errorhandling/fstoolkit.errorhandling.jobresult/jobresult/ce.md).

#### Example 1

Continuing from the [JobResult.map2 example](broken://pages/-LgCTgunU3hya1GlaHIQ#example-1) and given the function

```fsharp
let notifyFollowers : NotifyNewPostRequest -> Job<Result<unit,exn>>
```

we can notify all followers using `JobResult.bind` as below:

```fsharp
newPostRequestResult |> JobResult.bind notifyFollowers
```
