New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

graphql-resolvable

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

graphql-resolvable

💎 Run GraphQL resolvers as needed

  • 1.0.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
3
decreased by-57.14%
Maintainers
1
Weekly downloads
 
Created
Source

💎 graphql-resolvable

Run GraphQL resolvers as needed – GraphQL Resolvable bypasses resolvers if all queried fields are whitelisted or resolved by the parent object.

Installation

yarn add graphql-resolvable

Use case

Let's take following example use case:

const typeDefs = gql`
  type Author {
    id: Int
    name: String
    posts: [Posts!]!
  }

  type Post {
    id: Int
    title: String
    comments: [Comment!]!
  }

  type Query {
    mainAuthor: Author
  }
`;

const resolvers = {
  Query: {
    mainAuthor: () => ({
      id: 1
      name: 'Glenn',
      posts: [{
        id: 1,
        title: 'Hello World'
      }],
    }),
  },
  Author: {
    posts: async (parent) => {
      const comments = await fetchPostCommentsFromAuthor(parent.id);

      return { ...parent.posts, comments };
    }
  },
};

Now if we do following query:

{
  mainAuthor {
    id
    name
    posts {
      id
      title
    }
  }
}

Ideally we can resolve the id and title of the post without waiting for the comments to be fetched. This is exactly what GraphQL Resolvable addresses generically.

Usage

Simply wrap your resolver with the resolvable function:

import resolvable from 'graphql-resolvable';

const resolver = {
  Author: {
    posts: resolveable(parent => getPostsbyAuthor(parent.id)),
  },
};

GraphQL resolvable will check queried fields against the fields that are coming from the parent. Based on that it will check if it can bypass the resolver.

You can also specify a whitelist of fields to bypass:

const resolver = {
  Author: {
    posts: resolveable(parent => getPostsbyAuthor(parent.id), {
      whitelist: ['id', 'bio', ' twitter'],
    }),
  },
};

Sometimes you'd want to just return the value from the args. This can be done by setting the returnArgs to true:

const resolver = {
  Author: {
    posts: resolveable(parent => getPostsbyAuthor(parent.id), {
      returnArgs: true,
    }),
  },
};

API

resolvable(resolver, { whitelist, returnArgs })

Options

whitelist: string[]

Additionally to the parent fields, the whitelist option allows to specify more fields to bypass the GraphQL resolver.

Default: []

returnArgs: boolean

Set this to true to add the args to the return value.

Note this will only apply if the return value of the GraphQL resolver is not an iterable.

Default: false

License

MIT

Keywords

FAQs

Package last updated on 03 Oct 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc