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

# Condition

> Take different paths depending on conditions

## Overview

<div align="center">
  <img src="https://mintcdn.com/dibby/pqX3-_kQLdN967hk/images/nodes/condition.png?fit=max&auto=format&n=pqX3-_kQLdN967hk&q=85&s=29d5d74624e98058cea109a8e7440636" alt="Condition" width="414" height="408" data-path="images/nodes/condition.png" />
</div>

The **Condition** node allows your workflow to branch into different paths based on conditional logic. This enables dynamic workflow execution based on your data.

## Configuration

### Conditions

Define one or more conditions to evaluate.

## Inputs

For each configured condition, the node creates an input with:

* **Value**: The actual value to check
* **Condition**: The comparison operator (Equals, Not Equals, Contains, etc.)
* **Comparison**: The value to compare against

Available operators depend on the data type:

* **String**: Equals, Not Equals, Contains, Not Contains
* **Number**: Equals, Not Equals, Greater Than, Less Than, Greater or Equal, Less or Equal
* **Date**: After, Before
* **Other types**: Equals, Not Equals

## Outputs

* **true**: Output handle when condition(s) are met (boolean)
* **false**: Output handle when condition(s) are not met (boolean)

## Output handles

The node provides two output handles:

* `true` - Path taken when conditions evaluate to true
* `false` - Path taken when conditions evaluate to false
