
Product
Introducing Reports: An Extensible Reporting Framework for Socket Data
Explore exportable charts for vulnerabilities, dependencies, and usage with Reports, Socket’s new extensible reporting framework.
graphql-resolvable
Advanced tools
Run GraphQL resolvers as needed – GraphQL Resolvable bypasses resolvers if all queried fields are whitelisted or resolved by the parent object.
yarn add graphql-resolvable
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.
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,
}),
},
};
resolvable(resolver, { whitelist, returnArgs })
whitelist: string[]Additionally to the parent fields, the whitelist option allows to specify more fields to bypass the GraphQL resolver.
Default: []
returnArgs: booleanSet 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
MIT
FAQs
đź’Ž Run GraphQL resolvers as needed
The npm package graphql-resolvable receives a total of 6 weekly downloads. As such, graphql-resolvable popularity was classified as not popular.
We found that graphql-resolvable demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Product
Explore exportable charts for vulnerabilities, dependencies, and usage with Reports, Socket’s new extensible reporting framework.

Product
Socket for Jira lets teams turn alerts into Jira tickets with manual creation, automated ticketing rules, and two-way sync.

Company News
Socket won two 2026 Reppy Awards from RepVue, ranking in the top 5% of all sales orgs. AE Alexandra Lister shares what it's like to grow a sales career here.