Created
September 6, 2013 23:02
-
-
Save eddywashere/6471155 to your computer and use it in GitHub Desktop.
mongoose schematypes
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var schema = new Schema({ | |
name: String, | |
binary: Buffer, | |
living: Boolean, | |
updated: { type: Date, default: Date.now } | |
age: { type: Number, min: 18, max: 65 } | |
mixed: Schema.Types.Mixed, | |
_someId: Schema.Types.ObjectId, | |
array: [], | |
ofString: [String], | |
ofNumber: [Number], | |
ofDates: [Date], | |
ofBuffer: [Buffer], | |
ofBoolean: [Boolean], | |
ofMixed: [Schema.Types.Mixed], | |
ofObjectId: [Schema.Types.ObjectId], | |
nested: { | |
stuff: { type: String, lowercase: true, trim: true } | |
} | |
}) | |
// example use | |
var Thing = mongoose.model('Thing', schema); | |
var m = new Thing; | |
m.name = 'Statue of Liberty' | |
m.age = 125; | |
m.updated = new Date; | |
m.binary = new Buffer(0); | |
m.living = false; | |
m.mixed = {[ any: { thing: 'i want' } ]}; | |
m.markModified('mixed'); | |
m._someId = new mongoose.Types.ObjectId; | |
m.array.push(1); | |
m.ofString.push("strings!"); | |
m.ofNumber.unshift(1,2,3,4); | |
m.ofDate.addToSet(new Date); | |
m.ofBuffer.pop(); | |
m.ofMixed = [1, [], 'three', { four: 5 }]; | |
m.nested.stuff = 'good'; | |
m.save(callback); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment