Mongoid is an Object-Document-Mapper (ODM) for MongoDB written in Ruby.

learn more… | top users | synonyms

1
vote
1answer
14 views

Form for mongoid embeds_many document

Currently I have two models. class Booking include Mongoid::Document include Mongoid::Timestamps field :capacity, type: Integer field :date, type:Date embeds_many :appointments ...
0
votes
0answers
10 views

Recurring rails error on Heroku/Unicorn - 'execution expired', an ActionView::Template::Error

My question is similar to the following, but is happening under slightly different circumstances. Rails: execution expired on time_zone_select My setup is: Rails 3.2.13 Unicorn 4.6.2 Mongoid ...
0
votes
1answer
21 views

Saving records recursively with Mongoid, Ancestry

I have a model Line Items embedded in Line model. In Line create view, I have provided ability to define multiple nested levels of line items. Here is a random snap of param[:line]: => ...
0
votes
1answer
17 views

Allow blank dates to pass validation and save in the database?

I have a Rails app, I am using Mongoid driver to map to my Mongodb database. I would like to allow users to not specify their date of birth if they do not want to. If they do specify the date I would ...
0
votes
0answers
16 views

How to measure the physical size of a query of documents in Mongo

I want to be able to measure the amount of data each of my users store. I have abstracted all the storage items to use STI so I only need to query from one table, I was hoping there was a way to ...
0
votes
1answer
24 views

How to get last N documents with mongoid?

I have found some information to accomplish this in mongoDB, but I need it with mongoid. So I can do something like: User.last(7000).each do .... I'm using: MongoDB shell version: 2.4.3 Mongoid ...
0
votes
2answers
10 views

Mongoid has_many relation returning no values

Suppose an app where users can give gifts to other users. There are two relations between the gift and the user (one as sender and the other one as receiver). The receiver part seems to not be ...
0
votes
1answer
16 views

How to include only some attributes in Mongoid referenced n-n within to_json

class User include Mongoid::Document has_and_belongs_to_many :contacts, class_name: 'User' field :username, :type => String field :email, :type => String field :time_zone, ...
0
votes
1answer
24 views

Having problems when implementing a many-to-many relationship in Mongoid

I'm building a Rails app and I'm having a little bit of trouble when implementing a Team and User many to many relationship, that way an User can be part of multiple teams and a team obviously can ...
0
votes
2answers
31 views

Can't save on action create

I have some problems with rails+mongoid to save on action create I wrote the relations: class SchoolClass include Mongoid::Document include Mongoid::MultiParameterAttributes has_one :teachers ...
1
vote
1answer
34 views

Best practices for mongoid relations

I am mapping relations in mongoid, I want to know the best practices for mongoid. Models Customer Service Supplier there are four different services (S1, S2, S3, S4), each service provided by ...
1
vote
1answer
39 views

Rails database name dynamically by user choice in Mongodb

While installing my app , I want to ask question like Name of database? and user will input name they want for database. Database name is inside config/mongoid.yml development: sessions: ...
-1
votes
1answer
18 views

Fetch all mongoid documents based on condition

class name is Usersdata In mongo {id:100,createdby:900,.......} {id:200,createdby:900,.......} {id:300,createdby:900,.......} {id:400,createdby:800,.......} {id:500,createdby:800,.......} I want ...
0
votes
1answer
7 views

Mongoid unique model references

I'm using Mongoid 3. I have a simple class Tour and references multiple Itineraries. Is there a way that I can validate that for each tour, the itineraries' dates are unique, i.e. I can't have 2 ...
0
votes
0answers
30 views

“Not equal” named scope in rails with Mongoid

I have two models Content and ContentType. In Content model I can do: def get_all_content_except_poking_message Content.all.where(:name.ne => "no forking, just poking") end Now, I am trying to ...
0
votes
0answers
24 views

Calling destroy on relation in Mongoid many to many relation with helper model does not remove model from List

I have a many to many relation from User to Project with a helper model. User and Project has many user_project_memberships and user_project_membership has one Project and one User. When I try to ...
0
votes
1answer
16 views

Mongoid has_many relationship causes Rack cookie error in Sinatra

Writing an application using Mongoid 3.1 and Sinatra in Ruby 1.9.3. I have a model called Order that has_many Items. Whenever I try to append an Item to an Order.items, I run into problems. I have the ...
2
votes
2answers
76 views

Rails validation for has_one relation

I have two model like: class Employee field :name field :login, type: Boolean has_one :user end class User field :username field :email belongs_to :employee validates_presence_of ...
1
vote
1answer
37 views

Automatically mark required fields with an asterisk, not working

I'm trying to detect the required fields in a mongoid model in order to add a mark after the label in the view. This is the initializer I'm using. Note that the only different thing for Mongoid is ...
0
votes
1answer
16 views

Why isn't validations working with `embeds_one`?

Why isn't validations working with embeds_one? class Foo include Mongoid::Document embeds_one :bar, :cascade_callbacks => true end class Bar include Mongoid::Document embedded_in :foo ...
0
votes
0answers
24 views

How to validate uniqueness with scope?

I've got: class Foo include Mongoid::Document field :year, :type => Integer, :default => Time.now.utc.year field :month, :type => Integer, :default => Time.now.utc.month field ...
0
votes
1answer
23 views

Upgrade to Rails 3 and lost ability to run Active Record database migrations

I have a corporate web application that, for various reasons, has Active Record connections to SQL Server as well as Mongoid Documents. There has been resistance to updating to Rails 3 until now (yes, ...
0
votes
1answer
39 views

MongoDB Many to Many with extra attribute

Since I'm new to MongoDB, I've got a lot of questions regarding schema design. I'd like to transform my relational schema to a MongoDB-Schema for learning reasons and want to profit from the schema as ...
0
votes
1answer
22 views

change order of specific mongo records

in mongodb records are like this { "_id" : ObjectId("5191fc1206610430cd000004"), "ancestry" : null, "name" : "root" } { "_id" : ObjectId("5191fc1306610430cd000005"), "ancestry" : null, "name" : ...
0
votes
1answer
17 views

View helper for mongoid-pagination?

In rails, does mongoid-pagination have a view helper that will automatically render the pagination links on a view on which it is applied? Do I have to build my own one instead. For example with ...
1
vote
0answers
14 views

Rails/delayed_job just… not working

I've spent about 3 hours trying to get a simple delayed_job to execute without success. I have this extremely simple job: class Foo def foo `echo foo >> /tmp/mrsmee` end end I'm ...
0
votes
0answers
18 views

Need rails delayed_jobs to go in specific database

I'm planning to use delayed_job in a Rails application using the Mongoid backend. How do I arrange for delayed jobs to be created in a specific Mongo database (not the default)?
0
votes
1answer
34 views

How do I aggregate two nested documents?

Since Video has embeds_many dates, and dates has embeds_many countries. Using the aggregation framework, how would I get the total of all likes_count? I got the following structure: { "_id" : ...
1
vote
0answers
28 views

Intersecting Mongoid “in”-Queries

According to the mongoid documentation on Explicit Merging ("Queryable#in - defaults to intersect") I would expect the following query: Contact.in(id: ['a', 'b']).in(id: ['b', 'c']) to result in ...
0
votes
1answer
14 views

What is the difference between class_name and inverse_class_name in Mongoid?

What is the difference between class_name and inverse_class_name in Mongoid?
0
votes
1answer
41 views

Nested Querying in Mongoid in 2013

So this question is two years old: Querying embedded objects in Mongoid/rails 3 ("Lower than", Min operators and sorting) and the way it recommends to query nested objects with less than ...
0
votes
2answers
40 views

Extract Mongoid documents based on the DateTime of their last has_many relations?

I have a bunch of orders, and some of them have order_confirmations. 1: I wish to extract a list of orders based on the DateTime of its last order_confirmation. This is my failed attempt (returns 0 ...
0
votes
2answers
40 views

How to create relations among models for a rails app with devise and mongoid?

I'm trying to create a simple to-do list app here.. Is there any tutorial which can guide me to create relations among models? and what changes are nedded for the task controller.. Ruby - 1.9.3-p385 ...
0
votes
1answer
36 views

Rails/Mongoid: Can an embedded (embedded_in) document have many documents (has_many)?

I have a user who embeds many email_accounts. At the same time I wish that the email_accounts can have many email_templates. Is this possible? My Rails app refuses to accept the relations when I try ...
0
votes
1answer
25 views

How can I filter results of map-reduce in Mongoid

Is there a way to filter the results of map-reduce operation in Mongoid? I found a 'query' function that can be executed on the MongoDB but there doesn't seem to be a mapping in Mongoid. I'd like to ...
1
vote
1answer
76 views

How to extract Mongoid documents based on a field value in the first or last embedded document?

I wish to find Order documents based on a field in the last embedded Notificationdocument. In the example below I wish to find all pending orders that has one or more embedded notifications, and ...
0
votes
0answers
42 views

How to query MongoDB in optimized way?

I have a Doubt in mongoid includes. I have the models like below class Person include Mongoid::Document field :name, type: String field :age, type: Integer has_many :phones embeds_many ...
0
votes
0answers
17 views

Moingoid - retrieving all embedded documents from parents with the same name

I am relatively new to Mongo and using it in my first project. As the requirements of the project have changed, I'm trying to determine if Mongo is still a good fit given some of the new things I'm ...
0
votes
1answer
35 views

Should dates be an embedded document?

I am using Mongoid 3. I have a Video model. Should dates be an embedded document or an Array type? If I have this structure: { :id => 2, :dates => [ { :date ...
0
votes
1answer
20 views

Mongoid each.with_index not working

I can do this in plain ruby [3,2,1].each.with_index do |e, i| p e, i end 3 0 2 1 1 2 But I can't do this with Mongoid: Model.each.with_index do |e, i| p e, i end It fails with undefined ...
0
votes
0answers
24 views

Mongoid undefined method `field' for []:Array error

Here's my model: class Model include Mongoid::Document field :field_1, type: Integer field :field_2, type: Integer field :field_3, type: Integer field :field_4, type: Integer def ...
0
votes
1answer
19 views

How to work with an instance of a model without saving it to mongoid

The users of my Rails app are receiving a lot of emails (lets say they represent signups from new customers of my users). When an email is received a customer should be created, and the email should ...
1
vote
3answers
21 views

How to return a Mongoid::Criteria for A has many B has many C relation?

Relations are: Account has many Groups Group has many Users I need a method in Account to get all users (Users of each group) and then apply an User scope: account.rb def users ...
0
votes
0answers
16 views

Delete all children's children when parent node is deleted in mongoid ancestry

I am using mongoid ancestry gem. When i delete parent node all its children are delete properly. But Children’s children are not deleted. Zombie children remain in mongodb, I have included mongoid ...
0
votes
1answer
46 views

Rails cancan user that have many users

I am trying to do a system that have users that have users. So far there is no problem. I create two roles, :employee and :boss, a boss can have many employee, and an employee have to have one boss. ...
0
votes
0answers
26 views

Mongoid - getting mongoid objects from array of hashes

I am trying to implement text search in MongoDB, which I have implemented using the following query (Content is a mongoid model) output = Content.db.command(:text => "contents", ...
0
votes
1answer
22 views

How to sort by nested field value with Mongoid?

Let's say I have a User with a field name, and which has_many teams, and a Team that belongs_to a user, and belongs_to a sport. A Sport has a field name and has_many teams. I want to walk through the ...
0
votes
0answers
33 views

rspec + factory_girl + mongoid model: update spec instance.should_receive(:update_attributes).with(hash).and_return(false) failing

From Gemfile: gem "rails", "= 3.2.12" group :test do gem "database_cleaner", "~> 0.7.2" gem "factory_girl_rails", "~> 4.1.0", require: false gem "ffaker", "~> ...
1
vote
0answers
20 views

Access belongs_to on a Mongoid::Document subclass

I have a model 'Index' as: class Index include Mongoid::Document belongs_to :project end Another model PercentileRankIndex inherits Index class PercentileRankIndex < Index def ...
0
votes
0answers
3 views

Sort has_many relationship after a field that is not in the referenced collection?

I'm sorry for the cryptic name of this topic but I didn't really find a better one. I have a Person model, a Company model and an Employment model which sits between them. It's sort of a has_many ...

1 2 3 4 5 49