Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
nestjs-gql-cache-control
Advanced tools
This package offers you a simple decorator to set cache control on your resolvers.
This package offers you a simple decorator to set cache control on your resolvers.
On Yarn:
yarn add nestjs-gql-cache-control
On NPM:
npm install nestjs-gql-cache-control
To use caching, you are gonna need these packages too:
@nestjs/graphql
apollo-server-core
apollo-server-plugin-response-cache
First, register graphql module and cache plugins in your app module:
import responseCachePlugin from 'apollo-server-plugin-response-cache';
import { ApolloServerPluginCacheControl } from 'apollo-server-core/dist/plugin/cacheControl';
GraphQLModule.forRoot({
// ...
plugins: [
ApolloServerPluginCacheControl({ defaultMaxAge: 5 }), // optional
responseCachePlugin(),
],
}),
To add Redis or other caching stores, check Apollo's docs
Then, you can use the decorator on your queries and field resolvers:
import { CacheControl } from 'nestjs-gql-cache-control';
@Resolver((type) => Post)
export class PostResolver {
@Query(() => [Post])
@CacheControl({ maxAge: 10 })
posts() {
// database calls
return posts;
}
@ResolveField(() => User)
@CacheControl({ inheritMaxAge: true })
owner() {
// database calls
return owner;
}
@ResolveField(() => boolean)
@CacheControl({ maxAge: 5, scope: 'PRIVATE' })
hasLiked() {
// database calls
return hasLiked;
}
}
Please carefully read Apollo's docs about caching to understand how caching works, since it has a set of rules for cache calculation. In a brief:
a response should only be considered cacheable if every part of that response opts in to being cacheable. At the same time, we don't think developers should have to specify cache hints for every single field in their schema. So, we follow these heuristics: Root field resolvers are extremely likely to fetch data (because these fields have no parent), so we set their default maxAge to 0 to avoid automatically caching data that shouldn't be cached. Resolvers for other non-scalar fields (objects, interfaces, and unions) also commonly fetch data because they contain arbitrarily many fields. Consequently, we also set their default maxAge to 0. Resolvers for scalar, non-root fields rarely fetch data and instead usually populate data via the parent argument. Consequently, these fields inherit their default maxAge from their parent to reduce schema clutter.
If you happen to use nestjs-gql-connections, edges
and node
will automatically inherit cache control from their parents. but otherwise you should set inheritMaxAge
on your connection fields to prevent connections from cancelling your cache.
Why you should do that? because you probably don't want your connections to cancel your cache control. (learn more)
FAQs
This package offers you a simple decorator to set cache control on your resolvers.
We found that nestjs-gql-cache-control 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.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.