No description
Find a file
2016-10-19 18:28:55 +03:00
.npm/package added deepcloning + fixed deep function 2016-10-07 12:49:02 +03:00
lib #45 added compute deep functions + bumped up to 1.1.13 2016-10-19 18:28:55 +03:00
.travis.yml updated travis, the fetched docs now contain link info, filters work better 2016-09-15 10:37:10 +03:00
CHANGELOG.md #45 added compute deep functions + bumped up to 1.1.13 2016-10-19 18:28:55 +03:00
LICENSE added better docs + travis 2016-09-15 09:14:15 +03:00
main.client.js added namedQuery + cloning ability to query + fixes to exposure 2016-10-07 10:31:58 +03:00
main.server.js added namedQuery + cloning ability to query + fixes to exposure 2016-10-07 10:31:58 +03:00
package.js #45 added compute deep functions + bumped up to 1.1.13 2016-10-19 18:28:55 +03:00
README.md missing commas 2016-10-14 16:22:18 +03:00

Welcome to Grapher

Build Status

Documentation

http://grapher.cultofcoders.com

What ?

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

  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