I have an AREL query:
@group.members.where('member_id != ?', 4)
As expected, this query returns all members with an ID not equal to 4.
How would I build the same type of query to omit multiple IDs? For example:
@group.members.where('member_id != ?', [4 3])
Which would ideally return all members with an ID not equal to either 4 or 3.