Jeśli chcesz wykonać agregację, taką jak SUMA lub LICZBA, możesz wybrać tylko te kolumny, w których wykonujesz funkcję GROUP BY.
ShopifyOrderLineItem.select("shopify_order_line_items.title, count(shopify_order_line_items.id) as unique_ids, sum(amount) as total_price, sum(quantity) as total_quantity").where(:vendor_id => vendor_id).group("shopify_order_line_items.title")