
Security News
Meet Socket at Black Hat and DEF CON 2025 in Las Vegas
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
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 3 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.
Security News
Meet Socket at Black Hat & DEF CON 2025 for 1:1s, insider security talks at Allegiant Stadium, and a private dinner with top minds in software supply chain security.
Security News
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.