Skip to Content

next-workflow-builder

DevKit AI Builder Template DocumentationMarketplace
CTRL K
Demo
CTRL K
  • DevKit 
  • AI Builder Template 
    • Introduction
    • Getting Started
    • Configuration
    • Plugins
      • Overview
      • HTTP Request
      • Condition
      • Loop
      • Merge
      • Database Query
      • Run Workflow
      • Run Workflows in Sequence
      • Switch
    • Creating Plugins
    • API Reference
    • CLI Reference
    • Components
    • Database
    • Authentication
    • Deployment
    • Architecture
    • Contributing
    • MCP Server
  • Marketplace
  • Introduction
  • Getting Started
  • Configuration
  • Plugins
    • Overview
    • HTTP Request
    • Condition
    • Loop
    • Merge
    • Database Query
    • Run Workflow
    • Run Workflows in Sequence
    • Switch
  • Creating Plugins
  • API Reference
  • CLI Reference
  • Components
  • Database
  • Authentication
  • Deployment
  • Architecture
  • Contributing
  • MCP Server

On This Page

  • Configuration
  • Operators
  • String
  • Number
  • Boolean
  • Date & Time
  • Output
  • Workflow Behavior
Question? Give us feedback Edit this page 
DocumentationBuilt-in PluginsCondition

Condition

Branch your workflow based on a structured condition. When the condition evaluates to true, downstream nodes execute. When false, they are skipped.

Configuration

FieldTypeRequiredDescription
leftValueTemplate InputYesThe value to test (supports template references)
dataTypeSelectYesData type for comparison: String, Number, Boolean, or Date & Time
operatorSelectYesComparison operator (options change per data type)
rightValueTemplate InputFor binary operatorsThe value to compare against (hidden for unary operators)

Operators

String

OperatorDescription
existsValue is not null or undefined
does not existValue is null or undefined
is emptyValue is null, undefined, or empty string
is not emptyValue is not null, undefined, or empty string
equalsExact string match
does not equalStrings are different
containsLeft value includes right value
does not containLeft value does not include right value
starts withLeft value starts with right value
does not start withLeft value does not start with right value
ends withLeft value ends with right value
does not end withLeft value does not end with right value
matches regexLeft value matches the regular expression
does not match regexLeft value does not match the regular expression

Number

OperatorDescription
equalsNumbers are equal
does not equalNumbers are different
greater thanLeft > right
less thanLeft < right
greater than or equalLeft >= right
less than or equalLeft <= right

Boolean

OperatorDescription
is trueValue is truthy
is falseValue is falsy
existsValue is not null or undefined
does not existValue is null or undefined

Date & Time

OperatorDescription
is beforeLeft date is before right date
is afterLeft date is after right date
equalsDates are equal

Output

FieldTypeDescription
conditionbooleanThe evaluated result of the condition

Workflow Behavior

  • True branch: All nodes connected downstream of the Condition node execute normally
  • False branch: All downstream nodes are skipped
  • The data type, operator, and resolved values are logged for debugging
Last updated on March 12, 2026
HTTP RequestLoop

© 2026 All rights reserved.

Product by David Sanchez