> ## Documentation Index
> Fetch the complete documentation index at: https://docs.mainly.ai/llms.txt
> Use this file to discover all available pages before exploring further.

# RunUntilButton

> The RunUntilButton control displays a button that executes the graph until the current node is reached.

```
RunUntilButton(label="Run Until this Node")
```

# Example

```python theme={null}
from mirmod.controls import RunUntilButton

@wob.receiver("state", "run", control=RunUntilButton(label="Execute to Here"), hidden=False, connectable=False)
def run_until(self, data):
	pass
```

<Note>This control allows users to run the graph until the node is reached. It's useful for creating nodes that update their attributes based on their inputs during partial execution.</Note>

# Parameters

| Name  | Type   | Description                                                      |
| ----- | ------ | ---------------------------------------------------------------- |
| label | string | The text displayed on the button. Default "Run Until this Node". |
