# Block

The Block action node can be used to group a set of action nodes and control their execution.&#x20;

### Properties

| Property           | Description                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                             |
| ------------------ | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| **Execution Mode** | <p>There are three options:<br><br><strong>Sequential (default):</strong> When running in sequential mode, the action nodes behave as they would in any other block node.<br></p><p><strong>Parallel:</strong> All action nodes are executed in parallel. Useful when fetching data from multiple third parties. If one of the children fails, the entire block will fail. Any catch exception blocks added as direct children to the block will be ignored in this execution mode.<br></p><p><strong>First to finish:</strong> All children are executed in parallel, but the block will finish as soon as the first child is done. Note that all the siblings will still run until finished. Any errors occurring in any of the children will be ignored on block level. Any catch exception blocks added as direct children to the block will be ignored in this execution mode.</p> |


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.appfarm.io/library/action-nodes/block.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
