Using mongoose and NodeJS, suppose I have an "Car" and a "Wheel" schema. The car stores an array of wheels.
var Wheel = new Schema({
color : { type: String },
timestamp : { type: Date }
});
var Car = new Schema({
wheels : [Wheel],
timestamp : { type: Date }
});
Will a car document contain static copies of those wheels, or are the wheels stored as links (which will reflect the latest state of the wheel on lookup, even if the wheel has changed since the car was created).