Skip to content

Instantly share code, notes, and snippets.

@dannytranlx
Created February 21, 2016 04:47
Show Gist options
  • Save dannytranlx/3bd9d981fa573b7a0ee0 to your computer and use it in GitHub Desktop.
Save dannytranlx/3bd9d981fa573b7a0ee0 to your computer and use it in GitHub Desktop.
// food
date: array
desc: string
// logs
logs : [
{
createdAt: new Date(), //
type: 'food' // 'alchool'
desc: 'pita',
patientId: 434343dfkejdfkd
}
]
// patient table
patient : {
_id;
name
weight
etc..
}
mongo.collections.logs.find({
date: {
$gt: new Date(tmo)
},
type: {
$eq: 'food'
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment