Skip to main content

not equals

Check if two values are not equal

Written by Holly Conrad Smith

Use this when you want to check if two values are different within a flow, for example filtering out features that don't match a target type.

Inputs

Name

Abbreviation

Type

Access

Description

A

A

Any

Item

The first value

B

B

Any

Item

The second value

Outputs

Name

Abbreviation

Type

Access

Description

Result

R

Boolean

Item

Whether the values are not equal

How to

  1. Feed any value into item A

  2. Feed any value into item B

  3. The result is True if the two inputs are not an exact match, and false if they are an exact match

    Note: The data type of the inputs is considered.

    For instance

    String: “This is a String” does not equal Object: [”This is a String”]

Did this answer your question?