Hello,

I'd like to search for an account based on email using Ripple. See my model
account_model.rb:

class Account
  include Ripple::Document

  property :name, String, :presence => true
  property :email, String, :presence => true
  property :phone, String, :presence => true
  property :address, String, :presence => true
  property :type, Integer, :presence => true
  property :active, Boolean, :default => true, :presence => true

  timestamps!
end

So essentially, is there any way to search for accounts based on the :email
using Ripple?

Thanks,
Jesse L. Zamora
_______________________________________________
riak-users mailing list
[email protected]
http://lists.basho.com/mailman/listinfo/riak-users_lists.basho.com

Reply via email to