http://grapher.cultofcoders.com
Version 1.2 will be supported until 2020.
Grapher is a high performance data fetcher and collection relationship manager for Meteor and MongoDB:
- Makes data MongoDB denormalization easy (storing and linking data in different collections)
- You can link your MongoDB data with any type of database, and fetch it via Queries
- You have the same API for data-fetching whether you want your data to be reactive or not.
To give you an idea how this works, you can fetch the data like this:
{
users: {
profile: 1,
githubTickets: {},
posts: {
title: 1,
comments: {
text: 1,
date: 1,
author: {
profile: 1
}
}
}
}
}
Check-out the CHANGELOG for latest updates.
meteor add cultofcoders:grapher
Provides you with an easy to use "createQueryContainer" function.
Provides a playground for grapher and provides documentation of your data