Mongoose is a MongoDB object modeling tool, written in JavaScript, designed to work in an asynchronous environment.
0
votes
0answers
11 views
What should I include in the “Connection open” MongooseJS event?
var conn = mongoose.createConnection(...);
conn.on('open', callback)
Do I must/should include Schemas/Models/so definitions inside the event's callback ? Or anything else ?
I saw this - ...
0
votes
0answers
7 views
GeoNear Mongoose and 2d Indexes
I'm performing this query
{
"$geoNear":{
"uniqueDocs":true,
"includeLocs":true,
"near":[
8.759131,
40.272393
],
"spherical":false,
"distanceField":"d",
...
0
votes
0answers
12 views
Query for all documents in a database and not any specific collection in mongoose
I want to search and update any document which matches a particular id but dont want to specify any specific collection but the search needs to query all the documents in a particular database.
kind ...
0
votes
0answers
24 views
Why am I getting a “RangeError: Maximum call stack size exceeded” error?
I have my website hosted by Node.js with html and when I POST from a form below:
<form class="validateForm" id="registerform" method="POST" action="/signUp" accept-charset='UTF-8'>
...
0
votes
0answers
9 views
Comparing arrays from Mongoose using ShouldJS
Taking an array such as ['hello', 'there'] and storing that in a Mongoose document with a schema such as
tags: { type: Array }
using something such as:
Something.create({ tags: ['hello', ...
0
votes
1answer
33 views
NodeJS and MongoDB losing connection
I have 7 NodeJS with Mongoose webservices running in a small instance on Amazon AWS and a MongoDB in another small instance.
Everything works with low usage (both cpu, memory and network traffic), ...
1
vote
1answer
27 views
Stubbing a Mongoose model using Sinon
I am trying to stub the mongoose dependency used in this object:
var Page = function(db) {
var mongoose = db || require('mongoose');
if(!this instanceof Page) {
return new Page(db);
...
0
votes
0answers
23 views
How to pass an user to mongoose static methods automatically
I set a several mongoose static methods like the following:
userSchema.statics.findByName = function (name, user, cb) {
console.log(user.name);
this.find({ name: new RegExp(name, 'i') }, cb);
}
...
0
votes
0answers
17 views
Mongoose (mongodb) batch insert?
Does Mongoose v3.6+ support batch inserts now? I've searched for a few minutes but anything matching this query is a couple of years old and the answer was an unequivocal no.
Edit:
For future ...
0
votes
0answers
11 views
Building Dynamic Querys Mongoose nodejs
Good afternoon, I have a small nodejs app that takes string and splits it into a array of keywords. I want to query a mongodb collection using mongoose. Here is what I'm looking for but in SQL format. ...
0
votes
1answer
24 views
Mongoose find last ten entries in database
I am making a simple little Social Network. I have all the inputting posts, users, etc, done. The only thing wrong right now is it is pretty much just a chat room. Whenever you post something on ...
0
votes
1answer
55 views
Node.js + Mongoose - what's going wrong?
I have been studying a node.js + mongoose simple app, however, something went wrong. I have been working based on some examples from this site, but no lucky at all.
The code runs, however, no records ...
0
votes
2answers
32 views
Mongoose not registering model
I am currently using AngularJS with Express-Jade and Mongoose with Coffeescript. The directory structure is split into Model View Controller.
This is the post.coffee in model
mongoose = ...
1
vote
1answer
29 views
Mongodb + Mongoose.js - easy way to check that records conform to schema?
I have a mongodb DB which over time has been populated with data using various mongoose schema versions. I would like to run through these collections and verify that each document still conforms to ...
1
vote
1answer
21 views
Node.js, Mongoose, MongoHQ (save data)
I'm new in node.js.
I want to ask, how do we save data using mongoose?
In this case I've 3 folders to run the process
models (in this folder we have store.js)
var mongoose = require('mongoose');
...
0
votes
0answers
9 views
Mongoose aggregate and promises
I have this code:
var promise = Model.aggregate([query, group]).exec();
this triggers a:
TypeError: Cannot read property 'readPreference' of undefined
I can see that the issue comes from the ...
0
votes
1answer
21 views
Nested (children) comments within a single parent comment in MongoDB
Question: Do I nest my child comments within a single parent comment or not?
Overview:
Creating comment system
Comments can have children
Right now each comment child or parent is stored as one ...
0
votes
1answer
26 views
Q promises and mongoose with connection.insert
i have this piece of code:
var RidePaths = mongoose.model('ridepaths', ridePathSchema);
return q.nfcall(RidePaths.collection.insert, ridePaths);
and when I do execute it the promise does not get ...
0
votes
1answer
12 views
Set default to Required for a field in a model in Mongoose?
I'm using Mongoose as a NodeJS client to communicate with MongoDB.
When I was defining my Schema, I found that for most of my fields I'd like to put a "required" validator on it.
I want to check if ...
0
votes
1answer
18 views
Cant set headers after they are sent using connect
How to resolve this problem.
Error: Can't set headers after they are sent.
at ServerResponse.OutgoingMessage.setHeader (http.js:704:11)
at ServerResponse.res.setHeader ...
1
vote
1answer
24 views
Reference documents with ObjectId when saving in mongoose
I have the following schemas:
// ingredient
var ingredSchema = new Schema({
name: String,
cost: Number
});
// order
var orderSchema = new Schema({
cusName: String,
ingredients: [{type: ...
1
vote
1answer
8 views
Are Mongoose embedded doc ids supposed to be unique across parent docs?
I have a Mongoose (3.6.1) schema with an array of embedded documents:
var document = new Schema({
name: String,
fileName: String,
createDate: Default
});
var transactionSchema = new ...
0
votes
0answers
25 views
node.js require() do not behave as expected when using linked packages
I currently have a problem happening at runtime with node.js and the require() function. The main issue here is when calling, for example,
require('mongoose');
from different packages. It is ...
0
votes
1answer
19 views
How to model recurency and hasMany relationship in MongoDB?
In my app there are users. Each user may have many friends (other users). If user A has a friend B then user B has a friend A - always. I will have to query collection of users to get all friends of ...
1
vote
1answer
49 views
+100
Is it make sense to wrap mongoose model to own API?
I'm trying to understand is it make sense to make own API for working with Mongoose models?
Let's say we have the simple Mongoose user model:
var UserSchema = new mongoose.Schema({
email: { type: ...
1
vote
1answer
31 views
how to use populate and aggregate in same statement?
this is my appointment collection
{ _id: ObjectId("518ee0bc9be1909012000002"), date: ISODate("2013-05-13T22:00:00Z"), patient:ObjectId("518ee0bc9be1909012000002") }
{ _id: ...
1
vote
0answers
25 views
Objects returned by Mongoose queries have no attributes
I currently have 3 MongoDB databases to which I connect from a Node.js app using mongoose.createConnection(...). For each db, I define schemas and models for all collections in the db. The problem I ...
0
votes
0answers
25 views
Simplest way to create a connection and execute a query on replicaset with mongoose?
I'm trying to execute a specific query on replica set... but without success.
What is the simplest way to create a connection and execute a query on replicaset with mongoose?
My code-1:
var ...
0
votes
1answer
26 views
Why mongoose.model.create's Callback Isn't Executed from within Express 3.x HTTP Request Handler (connect-mongodb is the cause, actually)
To put the problem stright in code:
expressApp.get('/', function requestHandler(req, res) {
userMongooseModel.create(userPropertiesDict, NEVER_CALLED_CALLBACK);
console.log('This is printed just ...
0
votes
0answers
27 views
use npm packaged mongoose
In order to "modularize" a project, I created several npm packages, but I get an error in two modules that use mongoose.
The first one regroups several operation over the db such connection, ...
0
votes
1answer
33 views
Mongoose Schema - Requiring one to be unique but not both
I want to store an email string and password where only 1 needs to be unique. So someone can use the same email address with 2 different passwords (or 100) and have 100 accounts but all the passwords ...
1
vote
1answer
29 views
Mongo Db design (embed vs references) in Trello
When I open https://trello.com/board/board_name/board_id.json, I can see that within a board there are Nested documents of Card, List, Actions etc. Want to know whether three main collections that ...
0
votes
0answers
11 views
Moongose 3.6.11, key “options” in a model
i just migrate to mongoose 3.6.11
One of my model have a key named "options" in it's schema, but now i have problem with it
So how can i rename it without loss data (i have plenty of row to modify) ?
...
0
votes
1answer
32 views
Mongoose date format
Currently having an issue retrieving dates from mongoose. This is my schema:
var ActivitySchema = new Schema({
activityName : String
, acitivtyParticipant : String
, activityType : ...
0
votes
1answer
26 views
TypeError on static method of mongoose model
I'm using node.js along with the MongoDb driver Mongoose 3.6.1. This is my schema definition:
models/user.js
var mongoose = require('mongoose'),
Schema = mongoose.Schema;
var userSchema = new ...
0
votes
1answer
12 views
Access mongoose non-schema values in Jade
I have a really weird problem in Jade where I cannot access the values that aren't defined in the Schema.
I'm using strict:false on my schema and saving values to it. My data looks like this:
{
...
0
votes
0answers
9 views
doc.populate changes [ObjectId] to Mixed, then doc.save() fails
I have a one-to-many relationship represented by type [ObjectId]. I use doc.populate() to fetch details on the objects in that list, then manipulate that list, and finally doc.save().
However, by ...
0
votes
1answer
27 views
Mongoose + NodeJS Phorum Schema
Hi i'm building a phorum with NodeJS and MongoDB. Im really new with this tecnologies, and i have some questions. I have the current schema in my mind for buid this. There are Areas, that have ...
0
votes
1answer
16 views
Mongoose populate with array of objects containing ref
I have a Mongoose schema with an array lists of objects that consist of a reference to another collection and a nested array of numbers:
var Schema, exports, mongoose, schema;
mongoose = ...
0
votes
1answer
25 views
Mongo geolocation using $near and 2d index not being accurate
I've written an application that finds local establishments and delivers them via a RESTful API. My stack is: express, express-resource and mongoose. Here is a sample of my model:
var PlaceSchema = ...
0
votes
1answer
36 views
Group by date in mongoose
this is my appointment collection
{ _id: ObjectId("518ee0bc9be1909012000002"), date: ISODate("2013-05-13T22:00:00Z"), patient:"John" }
{ _id: ObjectId("518ee0bc9be1909012000002"), date: ...
0
votes
1answer
14 views
Difference: Mongoose populate and Embedded document
What would be an ideal situation to use Mongoose populate and Embedded document, why would i choose one over other? Advantages and disadvantages. Thanks!
0
votes
0answers
28 views
Mongoose: Get last subdocument of document
I would like to find the last created subdocument in one of the documents and get it's data. I have model Posts which contains main post and comments on it. Comments field contains subdocuments and ...
0
votes
1answer
63 views
Make rest call from express
Currently struggling with a issue with express, node.js (and mongoose). I have set up a lot of REST functions that I can redirect to that is working.
From my app.js:
app.get('/users', user.list);
...
1
vote
1answer
39 views
mongoose - model.update not working
I'm doing a simple update when my node.js app receives a certain POST request. This is my code:
app.post('/comment', function (req,res) {
var params = req.body;
BlogPost.update({"title": ...
0
votes
1answer
26 views
Fetch multiple collections with mongoose
Currently using node.js along with mongoose and express. I have two collections in my MongoDB and I can successfully retrieve data like this:
ActivityList.prototype = {
showActivities: ...
0
votes
1answer
12 views
Serving out saved Buffer from Mongo
I'm trying to serve out images that I have stored in a Mongo document. I'm using express, express-resource and mongoose.
The data, which is a JPG, is stored in a Buffer field in my schema. Seems like ...
4
votes
1answer
30 views
How to query two collection in mongoose on nodeJs?
hi am new to nodeJs i have to query a table from the result of the query, i have to query another table. i tried the code as follows but it returns only null.
action(function getpositions(req){
...
0
votes
1answer
15 views
Is it possible to define a default_scope in Mongoose?
In Rails there is default_scope (http://apidock.com/rails/ActiveRecord/Scoping/Default/ClassMethods/default_scope) which allows specifying a default set of rules that are applied, when querying models ...
0
votes
0answers
22 views
OverwriteModelError: Cannot overwrite `category` model once compiled
error
C:\nodejs\node.exe app.js
Express server listening on port 81
POST /39 200 1225ms - 3b
D:\node.js\node_modules\mongodb\lib\mongodb\connection\server.js:565
throw err;
^
...
