I want to grab all the users that either have an email as the one supplied or the first and last name. So for example:
users = User.where(:first_name => \
Rails 5 comes with an or method.
This method accepts an ActiveRecord::Relation object. eg:
ActiveRecord::Relation
User.where(first_name: 'James', last_name: 'Scott') .or(User.where(email: 'james@gmail.com'))