No description
Find a file
2017-04-28 07:16:38 +03:00
.npm/package 1.2.3 - paginate true, exporting function for grapher live, fixed package implying 2016-11-07 18:44:09 +02:00
lib added stringification of findOne to work with firewall 2017-04-13 17:20:17 +03:00
.travis.yml using old release to fix tests 2017-03-17 18:58:10 +02:00
CHANGELOG.md bumped to 1.2.5 2016-11-29 11:17:12 +02:00
LICENSE added better docs + travis 2016-09-15 09:14:15 +03:00
main.client.js first phase of reducers, implemented reducing and cleaning-up concepts 2016-11-21 13:28:15 +02:00
main.server.js Fixed #63 - added support for promises and sync values 2016-11-29 10:52:42 +02:00
package.js Collection2 remove 2017-04-28 07:16:38 +03:00
README.md Update README.md 2017-03-16 22:54:01 +02:00

Welcome to Grapher

Build Status

(Build is not failing, it's just phantomjs acting weird on travis, all tests pass)

Documentation

http://grapher.cultofcoders.com

Long Term Support

Version 1.2 will be supported until 2020.

What ?

Grapher is a high performance data fetcher and collection relationship manager for Meteor and MongoDB:

  1. Makes data MongoDB denormalization easy (storing and linking data in different collections)
  2. You can link your MongoDB data with any type of database, and fetch it via Queries
  3. You have the same API for data-fetching whether you want your data to be reactive or not.

Sample

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
                }
            }
        }
    }
}

Updates

Check-out the CHANGELOG for latest updates.

Installation

meteor add cultofcoders:grapher

Useful packages and integrations

Integration with React (cultofcoders:grapher-react)

Provides you with an easy to use "createQueryContainer" function.

Live View (cultofcoders:grapher-live)

Provides a playground for grapher and provides documentation of your data

Boiler plate Meteor + React + Grapher

https://github.com/cult-of-coders/grapher-boilerplate