---
title: "Boolean Operators"
url: "https://eightwire.io/knowledge-base/boolean-operators/"
category: "Process Expressions Syntax"
generated: "2026-09-16"
---
# Boolean Operators

The following operators are supported and will write a boolean result

| Operator | Name | Description |
|---|---|---|
| `==` | Equality | True if both sides are equal |
| `>` | Greater than | True if the left side is greater than the right |
| `>=` | Greater than or equal to | True if the left side is greater than or equal to the right |
| `<` | Less than | True if the left side is less than the right |
| `<=` | Less than or equal to | True if the left side is less than or equal to the right |