Might be a skill issue on my side, but I couldn't figure out how to use filtering in wr.Runset with v2, the grammar doesn't seem to be documented anywhere. I tried
config.value == v
and
value == v
and some other variations, it always resulted in a somehow broken plot.
I fixed it for myself locally by allowing Runset.filters to be filters: Optional[str | Filters] = "" and bypass the string parsing -- this allowed me to use the "typical" ws.Config("value") == v semantics. Happy to contribute this code if it'd help.