Comparison

Use this expression when you want to compare two variables and generate a query when the result returns false.

Note:

You can use any valid JavaScript comparison operators. The example shown is just for illustration purposes.

if (a>b){
  return false;
}