In an effort to further standardize Expression Language, we're deprecating the following EL special operators.
$size: Replace with size(...)$exists: Replace with exists(...)Deprecated
output (Recipe) {
on-empty {
if (servings.$exists) {
drop (servings)
} else-if (course.$exists || meal.$exists || cuisine.$exists) {
ordered-effects {
drop (course)
drop (meal)
drop (cuisine)
}
}
}
}New
output (Recipe) {
on-empty {
if (exists(servings)) {
drop (servings)
} else-if (exists(course) || exists(meal) || exists(cuisine)) {
ordered-effects {
drop (course)
drop (meal)
drop (cuisine)
}
}
}
}Learn more about the deprecation stages.
Copyright 2025 Samsung All rights reserved