GithubHelp home page GithubHelp logo

thinkjson / graphql-projection Goto Github PK

View Code? Open in Web Editor NEW

This project forked from bharley/graphql-projection

0.0 2.0 0.0 10 KB

Create a MongoDB projection from a GraphQL query

JavaScript 100.00%

graphql-projection's Introduction

graphql-projection

Produces a MongoDB projection by parsing the GraphQL query in a resolve function to help to provide a concise query to MongoDB.

Installation

Install with yarn:

$ yarn add graphql-projection

or npm:

$ npm i -S graphql-projection

Now you can set create the projection function by feeding in your schema:

import makeProjector from 'graphql-projection';
import schema from './path/to/schema';

const projector = makeProjector(schema);

// ...

Basic Usage

In your resolve functions in your queries, you can use this function on the resolve info (the 4th argument to your resolve function) to produce a MongoDB projection:

// ...
    {
      type: FoodType,
      args: {
        id: {
          name: 'ID of food to look up',
          type: new GraphQLNonNull(GraphQLInt),
        },
      },
      resolve: (root, { id }, request, resolveInfo) => {
        const projection = projector(resolveInfo);
        
        return db.collection('foods').find({ _id: id }, projection);
      },
    }
// ...

Custom Projections

Not all GraphQL fields will map 1-to-1 with their database counterparts. If you have a computed field, you can specify the projection that should be used for it by adding a projection property alongside the field's type definition:

const FoodType = new GraphQLObjectType({
  name: 'Food',
  fields: () => ({
    id: { type: new GraphQLNonNull(GraphQLInt) },
    name: { type: new GraphQLNonNull(GraphQLString) },
    reviews: { type: new GraphQLList(ReviewType) },
    averageRating: { type: new GraphQLNonNull(GraphQLInt), projection: 'reviews' },
  }),
});

Projection can either be an array of strings that will be added to the projection result (e.g., ['property_1', 'property_2', 'property_3']), or a space-separated string (e.g., 'property_1 property_2 property_3').

Contributing

Pull requests are welcome. This project uses eslint to ensure a standardized code style, flow to take advantage of all of the flow types GraphQL exports, and Mocha+Chai for tests.

graphql-projection's People

Contributors

bharley avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.