Skip to content

Comparison Operators

Fuuz Wiki Import edited this page Jun 7, 2026 · 2 revisions

Comparison Operators

Standard JSONata comparison operators available in expressions throughout the Fuuz platform.

= (Equals)

The equality operator returns Boolean true if both operands are the same (type and value). Arrays and objects are checked for deep equality. Arrays must have the same values in the same order. Objects must have the same key/value pairs (order is not relevant). Otherwise it returns false.

Examples

  • 1+1 = 2 => true
  • "Hello" = "World" => false

!= (Not equals)

The inequality operator returns Boolean false if both operands are the same (type and value, deep equality). Otherwise it returns true.

Examples

  • 1+1 != 3 => true
  • "Hello" != "World" => true

> (Greater than)

The 'greater than' operator returns Boolean true if the LHS is numerically greater than the RHS. Otherwise it returns false.

Examples

  • 22 / 7 > 3 => true
  • 5 > 5 => false

< (Less than)

The 'less than' operator returns Boolean true if the LHS is numerically less than the RHS. Otherwise it returns false.

Examples

  • 22 / 7 < 3 => false
  • 5 < 5 => false

>= (Greater than or equals)

The 'greater than or equals' operator returns Boolean true if the LHS is numerically greater than or equal to the RHS. Otherwise it returns false.

Examples

  • 22 / 7 >= 3 => true
  • 5 >= 5 => true

<= (Less than or equals)

The 'less than or equals' operator returns Boolean true if the LHS is numerically less than or equal to the RHS. Otherwise it returns false.

Examples

  • 22 / 7 <= 3 => false
  • 5 <= 5 => true

in (Inclusion)

The array (sequence) inclusion operator returns Boolean true if the value of the LHS is included in the array of values on the RHS. Otherwise it returns false. If the RHS is a single value, then it is treated as a singleton array.

Examples

  • "world" in ["hello", "world"] => true
  • "hello" in "hello" => true
  • library.books["Aho" in authors].title

See Also


Source: support.fuuz.com

🏠 Home

Getting Started (14)
Training Guides (52)

Applications

Access & Users

Data Models & Schema

Screens

Weather Lookup Series — guided 3-part build

Data Flows & Integrations

Data, Reporting & Monitoring

Enterprise & Organizations

Platform Concepts & Architecture (10)
Screens & Application Design (17)
Data Models & Schema (8)
Data Flows & Scripting (51)

Designing Flows

Data Flow Nodes

JSONata Reference

Scripting

Integrations & Connectors (30)

General & iPaaS

Plex

EDI

IIoT & Edge Gateway (18)

Physical Device Connectors

Edge Data Connectors

Reporting, Documents & Dashboards (8)
Administration & Access Control (27)
Data Management (8)
Accelerators, Templates & Packages (8)
Design Standards (1)
How-To Guides (8)
FAQ & Troubleshooting (1)
Release Notes (117)

2026

2025

2024

2023

2022

2021

2020

Policies & Company (6)

Clone this wiki locally