Skip to main content

NotEquals

How to use the NotEquals operator

The NotEquals operator returns the items for which the Not Equals condition is satisfied.

Allowed Children

Primitive, Reference, Arithmetical, String Operator and Value Transforms nodes

Requirements

Must have 2 children of the same return type

Return Type

Item Ids Set

Example: Basic structure
{
"type": "NotEquals",
"children": [
{
"type": "Attribute",
"properties": {
"itemPropertyName": "attributes_itemsTitle"
}
},
{
"type": "String",
"properties": {
"value": ["hello"]
}
}
]
}
Example: Boolean Not Equals Query
{
"type": "Query",
"properties": {
"dodiCode": "designInterfaces_trees"
},
"children": [
{
"type": "NotEquals",
"children": [
{
"type": "Attribute",
"properties": {
"attributeCode": "attributes_treesIsStaked"
}
},
{
"type": "Boolean",
"value": "true"
}
]
}
]
}