I’d like to get(map()) a value from an array using a value as a filter. The value that I’d like to filter by contains a certain word, but I won’t always know its exact value. Can I use wildcards in the filter?
Above is the query I’d like to use. Except in my filter, the “01plan0810” value could have different numbers before and after the “plan”. So I’d like to change the query to something like,
On further investigation, the map function does allow multiple values for filtering.
If the number of combinations/permutations of the wildcarded section is small, you could possibly provide all possible values. However this doesn’t seem to be suitable for your use case.