Als u een aggregatie wilt doen, zoals SUM of COUNT, kunt u alleen de kolommen selecteren waarop u GROUP BY doet.
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")