The above query works great if I'm using a string reference list - it will return counts based on the items in that reference list if they're present in the logs (user1@example.com, user2@example.com).
The reason I'm using reference lists is because there is the potential to search hundreds of items in one go, this way my query string does not exceed the length limit. However I also need to searches using wildcards for domains, e.g. .*@example.com - is there any way to still use reference lists to do those searches and return per item results?
