Created
February 21, 2016 04:47
-
-
Save dannytranlx/3bd9d981fa573b7a0ee0 to your computer and use it in GitHub Desktop.
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
// 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