Open mikecarruthers26 opened 8 months ago
The expressions language is from symphony:
https://symfony.com/doc/current/reference/formats/expression_language.html
There is a bunch of additional functions which have been made available inside expressions here:
You might be able to filter this as-is using an array operator:
https://symfony.com/doc/current/reference/formats/expression_language.html#array-operators
If neither of those work and you need to pull in a php level function and expose it then that should be an easy pull request
I have created a dataflow triggered on a course completed event. I can get the data from the user and course, but the custom fields exist in an array: customfields:
How can I write an expression to obtain the value of the custom field with name = 'cms_id'. if I use custom fields[2].value this assumes that the second field will always be cms_id but that's not the case.
Is there any documentation on the valid functions that may be used in an expression?