I can’t seem to do basic integer comparison in a transform. There is no error thrown but there isn’t a value generated either. What am I missing?
Transform below:
"name": "Determine User Risk",
"type": "static",
"attributes": {
"riskScore": {
"type": "firstValid",
"attributes": {
"values": [
{
"attributes": {
"attributeName": "RiskScore",
"sourceName": "Exabeam Advanced Analytics"
},
"type": "accountAttribute"
},
{
"attributes": {
"value": 0
},
"type": "static"
}
]
}
},
"value": "#if($riskScore > 60)Yes#elseNo#end"
},
"internal": false
}