Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

The two types of objects seem to be so close to one another that having both feels redundant. What is the point of having both schemas and models?

share|improve this question

1 Answer

up vote 7 down vote accepted

Often the easiest way to answer this type of question is with an example. In this case, someone has already done it for me :)

Take a look here:

http://rawberg.com/blog/nodejs/mongoose-orm-nested-models/

It gives a decent description of using schemas within models in mongoose and why you would want to do it, and also shows you how to push tasks via the model while the schema is all about the structure etc.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.