UNIQUE not working with array returned from MAP
The following works:
=UNIQUE(ARRAY(1 1 2) => [1 2]
The following does not work:
=UNIQUE(MAP(FLATTEN(SIBLINGS.actions) x => x.owner)) => array with duplicate string values
The MAP returns an array but UNIQUE just ignores it. Does anyone have a solution for this?