Is there a nicer way to skip the empty lists resulting from this query?
str:"hello world" extract list value where 1<count index by value from strRight now I have
((),(),("l","l","l"),("o","o"),(),(),(),())
(list ()) drop extract list value where 1<count index by value from str
(("l","l","l"),("o","o"))
With the aim of showing only repeat elements, so
"" fuse first @ (list ()) drop extract list value where 1<count index by value from str "lo" "" fuse first @ (list 0) drop extract first value where 1<count index by value from str "lo" "" fuse extract L where C>1 from select L:(first value) C:count value by value from str "lo"