I want to do
Model.where(\'id = ?\', [array of values])
How do I accomplish this look up without chaining OR statements together?
From the ActiveRecord Query Interface guide
If you want to find records using the IN expression you can pass an array to the conditions hash:
Client.where(orders_count: [1,3,5])