Expressions have is_any_of and is_none_of selection types, but is_all_of (or similar) would be even more useful. For example, to build an expression to select components having all the selected labels.
I realise that behind the expression builder the underlying queries for "any" and "none" are SQL-like "IN (...)" and "NOT IN (...)" and that "all" doesn't really work using IN/NOT IN.