View on GitHub

JODA - JSON On Demand Analysis

Efficient data wrangling for semi-structured JSON documents

NOT - Boolean Algebra

Negates the Boolean value

Details

This function can also be written as !<x>.

Input parameters

Name Type Optional Description
x Bool False  

Output

Bool: !<x>

Usage

NOT(<x>)

Examples

Example 1

Query

LOAD tmp
AS ('': NOT(true))

Result

false

Example 2

Query

LOAD tmp
AS ('': NOT(false))

Result

true