We have brought another exciting enhancement to the Array Functions.
Before this update, an array should be inside a variable to be visible in Array Functions, like this:
“`
{
“users”: [
{
“name”: “John Doe”,
“email”: “john@example.com”,
“age”: 30
},
{
“name”: “Jane Smith”,
“email”: “jane@example.com”,
“age”: 25
}
]
}
“`
In this case the user was able to select the array source, and then the field users
After this update, the array can be in this format:
“`
[
{
“name”: “John Doe”,
“email”: “john@example.com”,
“age”: 30
},
{
“name”: “Jane Smith”,
“email”: “jane@example.com”,
“age”: 25
}
]
“`
The user will select only the array source, and we’ll use the root level.