Accessing keys of a map inside Expression Functions

Hi, In a conditional sequence flow, I am using an Expression Function as below:

<conditionExpression xsi:type="tFormalExpression">
        <![CDATA[${variables:isNotEmpty(myMap.users)}]]>
</conditionExpression>

Here “myMap” is a java.util.Map that is created and available as a variable.
“users” is one of the keys in the map and its value is a list containing one or more objects.

However, this condition is getting evaluated to false. Please let me know the issue here.

I think in JUEL, when working with java.utili.map you should use the bracket notation to access map entries <![CDATA[${variables:isNotEmpty(myMap['users'])}]]>