0
votes
0answers
9 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
13 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
30 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
0answers
21 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 ...
1
vote
1answer
37 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": ...
4
votes
1answer
28 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
0answers
16 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; ^ ...
0
votes
1answer
14 views

connecting databases using Mongoose.js createConnection()

I have two mongo databases that I am connecting with using mongoose.createConnection(); I'm keeping an dbIndex.js file were the connection is made and the conn.model('model', schema) is initialized. ...
0
votes
0answers
16 views

Mongoose, mongodb and Appcelerator titanium app

I have writing this mobile app using appcelerator titanium. And using MongoDB (through REST API) which is embedded in MongoLab. I was wondering if i can use Mongoose to connect to mongodb either the ...
0
votes
1answer
13 views

Can I create a tailable cursor for a query in mongo?

Using mongo and mongoose in node, I can create a stream from a capped collection like this: @stream = Post.find().tailable().stream() But can I do it with a query like this as well?: @stream = ...
0
votes
3answers
32 views

SyntaxError: Unexpected token for at Object.Function (<anonymous>) node.js

I'm using Express, EJS and mongoose for a website learning exercise. Here is my index.js module: blog_model = require('./connection').blog_model; /* * GET home page. */ exports.index = ...
0
votes
0answers
20 views

Mongoose only saves certain fields (Mongoose + Restify)

This code won't save to my MongoDB. If I change doc.foursqure_key to doc.username or doc.password, it saves just fine. @User.findOne({ username: 'justin' }, (err, doc) => ...
0
votes
0answers
22 views

mongo capped collection on sub-collections

In my node/express project, I am using mongoose to connect to the mongo db. I have a collection called posts. I am using this collection as a message queue, so the collection is capped at 1000 posts, ...
0
votes
1answer
28 views

understanding mongoose [Schema.Types.Mixed]

Is the below schema defined correctly or does writing need to be writing: [Schema.Types.Mixed] or writing: [{}]? That is, if you have an array of dictionaries -- [{},{},{}] -- one can't predefine ...
0
votes
1answer
25 views

how filter inside array in mongodb

I want to filter only kumar "to" items"_id" : ObjectId("5048d2e5fbdac48208000042") message from my query and expected result { "_id" : ObjectId("5191502a2f1b3ca33e000016"), "message" : ...
0
votes
1answer
29 views

Mongoose query where value is not null

Looking to do the folling query: Entrant .find enterDate : oneMonthAgo confirmed : true .where('pincode.length > 0') .exec (err,entrants)-> Am i doing the where clause ...
1
vote
1answer
50 views

mongoose query for an array of dictionaries

How do you work with arrays that contain dictionaries? I'm trying to get together all the post fields so I can search their text. My attempts keep going nowhere using mongo shell. ...
0
votes
0answers
26 views

Aggregate: return document with no subdocument OR with latest subdocument only

This is a more complex version of the query in this question I've got these Mongoose Schemas: var Thread = new Schema({ title: String, messages: [Message] }); var Message = new Schema({ ...
0
votes
1answer
11 views

Installing plugins for mongoose - getting error

I'm trying to add in my first plugin - mongoose-text-search. https://npmjs.org/package/mongoose-text-search I'm getting the error: How to Error: text search not enabled that I can't figure out. I ...
2
votes
2answers
60 views

How does `mongoose` handle adding documents that have FIELDS that are __NOT__ part of the schema?

I'm playing around with quick start guide for mongoose. http://mongoosejs.com/docs/index.html I assumed that it would throw an error when I saved a document with a field NOT defined in the schema. ...
0
votes
1answer
35 views

Mongoose Won't Add Document

I am trying to get entries added to mongo db from heroku scheduler. But currently I am just testing using "node app/bin/trackStats" Here is my model. var mongoose = require('mongoose'); var Schema ...
0
votes
1answer
50 views

return document with latest subdocument only in mongodb aggregate

I've got these Mongoose Schemas: var Thread = new Schema({ title: String, messages: [Message] }); var Message = new Schema({ date_added: Date, author: String, text: String }); How do you ...
0
votes
1answer
22 views

How to query mongoose by property that is and array item

I have a mongoose model that looks like this: var mongoose = require('mongoose') , Schema = mongoose.Schema; var PictureSchema = new Schema({ listId: { type: Array, required: true }, thumb: ...
0
votes
0answers
20 views

mongodb: trying to remove unique key

Trying to remove a 'unique' key from my mongoDB without success... So , my Schema is this, ( using mongoose js ) var Market = new Schema({ marketId : { type: String, required: false, unique: ...
0
votes
1answer
51 views

Should I Parse JSON Data Before Inserting To MongoDB?

So, I am receiving some JSON data from a client to my Node.JS server. I want to insert that json into my MongoDB instance using Mongoose. I can insert the JSON as-is, and it works great, because it's ...
0
votes
1answer
41 views

How to Delete Item from Object in NodeJS/Mongo Service

I'm querying for a user object and performing a series of updates on the items within compared to incoming postdata (jsObject). I'm wondering how to completely remove an item from the ...
0
votes
0answers
15 views

MongooseJS Find Max, Min and Avg Number

I have a MongoDB database containing a series of values including a Number field, I wish to get the maximum number, minimum and average. How is the best way to do this using mongoosejs and nodejs?
0
votes
1answer
29 views

Node.js and MongoDB using Mongoose. Using findByIdAndUpdate vs Manual

are there any drawbacks to using findByIdAndUpdate and doing it manually. I noticed that findByIdAndUpdate drops my mongo connection, and read that you should try to keep connection open, only close ...
0
votes
0answers
12 views

Loading mongoosejs models from other data stores

I'm working on a project in Node.js with mongoDB and mongoose for the data layer. I was hoping to use Redis to cache the ID lookups so that mongo is free to work on the harder things. Specifically ...
1
vote
1answer
16 views

MongoDB Geospital compound indexing return error

I am trying to make an index over my collection in MongoDB. But I am getting error of point not in interval of [ -180, 180 ] This is the query I am trying to run. ...
0
votes
0answers
32 views

Should I use Schemas in mongo db or could I add documents without models too?

If I use mongoose I need to create a new Schema: var MySchema = mongoose.model('MySchema', { ID: String }) and only after that I can add a new document: var myDocument = new MySchema({ID: ...
1
vote
1answer
26 views

How to create a new db in mongoose?

If I use Mongoose in node.js I need to do: var mongoose = require('mongoose'); mongoose.connect('mongodb://localhost/myDB'); But what if I just installed mongodb and I don't have any DB at the ...
1
vote
1answer
36 views

adding multiple same documents using addtoset command in mongoose

My schema is var UserQuizSchema = mongoose.Schema({ uid:{type:ObjectId,required: true,index:true}, answer:[{content:String, qid:ObjectId ,time:Date }], }); In this ...
0
votes
1answer
22 views

MongoDB aggregate with dual sum

I have collection of mobile devices, and i want to count devices for each manufacturer and also count each model. All i could get so far is: { $group : { _id : "$hw.man", mantotal : { $sum : 1 ...
0
votes
1answer
31 views

Storing and accessing array from mongodb-express

I am storing an array from jade into mongodb. Eg. input(name='name[]',type='text')->Firstname,input(name='name[]',type='text')->lastname (just eg). So i have a name array. I have stored into mongodb ...
0
votes
1answer
38 views

How do I call a function defined in app.js from my ejs template?

I have a function defined in app.js var addUser = function(uname, pword, e_mail, name, callback){ var coll_model = mongoose.model('collaborator', User); var collaborator = new coll_model( { ...
1
vote
1answer
26 views

Disconnect from MongoDB after entries have been saved

I use Mongoose and Faker to fill in the database with data for testing. There are two schemas - User and Job. I use loops for both schemas to create 100 users and 500 jobs. I want to disconnect from ...
0
votes
2answers
44 views

Mongoose.js: Atomic update of nested properties?

Using Mongoose version 3.6.4 Say I have a MongoDB document like so: { "_id" : "5187b74e66ee9af96c39d3d6", "profile" : { "name" : { "first" : "Joe", "last" : ...
0
votes
0answers
26 views

Does applying a 2dsphere index on a mongoose schema force the location field to be required?

I have a mongoose schema and model defined as follows: var mongoose = require('mongoose') , Schema = new mongoose.Schema({ email: { index: { sparse: true, unique: ...
1
vote
1answer
35 views

MongoDB GeoNear Aggregate

The question is: Consider the following location: [-72, 42] and the range (circle) of radius 2 around this point. Write a query to find all the states that intersect this range (circle). Then, you ...
0
votes
1answer
35 views

MongoDB mm/dd/yy based $gte & $le

First of all, pardon me for my English. Now, the issue I'm facing is, the existing database has a column named "Date" inside "startOn" Object. It means, it makes like "startOn.Date" and it has data ...
0
votes
2answers
19 views

Mongoose - flexible field

I am new to NOSQL and MongoDB, I am building an app with NodeJS and Mongoose, and I am building a mongoose schema for a new collection. The documents of this collection will have some standard ...
0
votes
0answers
29 views

Best practice to create/update Mongoose objects

I have some multi depth Mongoose schemas. When creating/updating I currently assign each provided value from a json object to the object field. However I would like to do a couple of things. For one I ...
0
votes
1answer
36 views

How to Post data with express?

I have a pretty good understanding of how to use the app.get function, but I'm having trouble with the app.post. In the following app.js code, should the /someurl be the same as in the ...
1
vote
1answer
32 views

In Mongoose, how to filter an array of objects

I have the following schema: var sampleSchema = new Schema({ name: String, dates: [{ date: Date, duration: Number }] }); I'd need to filters the records according to the following ...
0
votes
1answer
42 views

Mongodb update with upsert and multi syntax

I am new to mongodb and so stressed out because of mongodb's incomplete documentation leaving me for trial and error... sadly, all my attempts are not working with no error, leaving me confused about ...
0
votes
1answer
36 views

Sharing a DB connection on the entire app or connect to DB on each request?

I'm doing an API with Nodejs using Restify. For the DB I'm using Mongodb (with mongoose). I was wondering, what the best solution between sharing a db connection to my entire app or connecting to the ...
1
vote
0answers
31 views

Mongoose save command is not working

Am new to mongodb and mongoose, am using rails framework to a access mongodb data. in that save command for update in not working, it doesn't store data into db. my code is userDetails = ...
0
votes
0answers
16 views

mongoose database queries with FindOne

I have the following mongoose schema merchantModel = mongoose.model('merchant', new mongoose.Schema({ catId: Number, merchId: Number, merchName: String, image: String, action: ...
1
vote
1answer
28 views

mongoosejs query fails when filtering using a string of keys as selector

I was attempting to query docs from a mongodb and have the system return only a few fields from the documents matching the query. I first tried the syntax listed below for the first query and it ...

1 2 3 4 5 25