GreaterThan
This formula allows you to compare multiple numbers for a "greater than"
relationship. e.g: Given the array of numbers [x, y, z], this formula will
return true if and only if x > y and y > z.
JSON Format
{
"type": "greaterThan",
"components": ...
}
Fields
| Field | Type | Required | Description |
|---|---|---|---|
components | StatFormulaComponent | ✓ | The formula for the values involved in the check. Has to compute to a list of numbers. |