Author:{
_id:
name:
}
Post:{
_id:
postDate:
description:
type: // A, B and C
authorId: // Relation to Author
}
Comment:{
_id:
commentDate:
description:
postId: // relation to Post
}
I want get all comment that commentDate > 2015-05-01 and post type = B???
With fields: commentDate, commentDescription, postDescription, postType, authorName to display.
Please help me (any package).