Creating an expression rule equivalent to a!queryEntity() but for a list of a!map()

Certified Senior Developer

Hi all,

The title basically describes it. I'd like to be able to apply filters on a list of maps on their key values.

For example in the code snippet below, to be able to set filter("name","=",bill) or filter("name", "not null").

Similar to a!queryEntity but for a collection of map instead of a Entity  

a!localVariables(
    local!mapCollection: {
                            a!map(name: "bill"),
                            a!map(name: "bob"),
                            a!map(name: "Jim"),
                            a!map(name: null)
                        }

) 

Also be able to apply operands like and and or if there are multiple key values in the map collection

  Discussion posts and replies are publicly visible