Hi,
Please find attached screenshot.
How to remove the list of dictionary with size 'o'
Discussion posts and replies are publicly visible
You could use the filter() or reject() function in conjunction with my universal null checker expression described here: https://appian.rocks/2022/10/17/the-magic-of-null-checking/
You can try by checking the key length. See the sample code for reference:
a!localVariables( local!data: { { id: 1, name: "Mobile" }, { id: 2, name: "Laptop" }, {} }, local!filteredData: a!forEach( items: local!data, expression: if(length(a!keys(fv!item)) = 0, {}, fv!item) ), local!filteredData )
Wrap in a!flatten()