I am using the histogram in a filter list widget with an array property. I want to be able to select multiple items and have the resulting object set only contain the objects where the array property has all of the selected items from the histogram, not any of the items.
Are there less than 500 unique values inside the arrays? If so, one option is to use a string selector instead of a filter list. The selector’s input would be a string array variable aggregating all unique values of the array property, and then the multiple-value string array output would contain the desired values. Then, using TypeScript, we could create a function that takes an Object Set and String Array as inputs. The function would output an Object Set where the returned objects’ array property contains all elements from the inputted String Array.