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

# Greater Than

> Check whether one number is larger than another.

The **Greater Than** action compares two numbers using `A > B`.

## Inputs

| Input | Type   | Required | Description                  |
| ----- | ------ | -------- | ---------------------------- |
| **A** | Number | Yes      | The value on the left side.  |
| **B** | Number | Yes      | The value on the right side. |

## Outputs

| Output     | Type    | Description                              |
| ---------- | ------- | ---------------------------------------- |
| **Result** | Boolean | `true` when **A** is greater than **B**. |

Equal values return `false`.
