Security News
pnpm 10.0.0 Blocks Lifecycle Scripts by Default
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
nestjs-gql-connections
Advanced tools
This package is a spec-compliant set of models and utilities based on [Relay's Graphql Cursor Connections Specification](https://relay.dev/graphql/connections.htm) and is created using [Generics](https://docs.nestjs.com/graphql/resolvers#generics)
This package is a spec-compliant set of models and utilities based on Relay's Graphql Cursor Connections Specification and is created using Generics
To use pagination in GraphQL, it's proposed by the spec that we use the "Connections" pattern and expose these connections in a standardized way.
PaginationArgs
to slice and paginate the result.Connection
objects to provide cursors and a way to tell the client when more results are available.On Yarn:
yarn add nestjs-gql-connections
On NPM:
npm install nestjs-gql-connections
You can create a new paginated model like so:
import { Paginated } from 'nestjs-gql-connections';
import { Product } from '../product.model';
export class ProductConnection extends Paginated(Product) {}
Note that for your connection to be compliant to relay's specifications, its name should end with Connection
. (reference)
To create a query for a paginated resource, do like so:
@Query(() => ProductConnection)
resourcePublications(
@Args() { after, before, first, last, skip }: PaginationArgs,
) {
// return data based on pagination
}
Be default, Apollo server won't cache if a field on resolver is an object (non-scalar), thinking non-scalar fields need fetching and are probably somehow independent (more info). While in the case of pagination's node
object or edges
, they are already fetched and available. So we've added cache control inheritance to all the respective fields and you don't really have to worry about that. This package goes nicely with the other overnested package for GraphQL caching, overnested/graphql-cache-control
If you use Prisma, there is another spec-compliant package that facilitates returning data as connections: @devoxa/prisma-relay-cursor-connection
FAQs
This package is a spec-compliant set of models and utilities based on [Relay's Graphql Cursor Connections Specification](https://relay.dev/graphql/connections.htm) and is created using [Generics](https://docs.nestjs.com/graphql/resolvers#generics)
We found that nestjs-gql-connections 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
pnpm 10 blocks lifecycle scripts by default to improve security, addressing supply chain attack risks but sparking debate over compatibility and workflow changes.
Product
Socket now supports uv.lock files to ensure consistent, secure dependency resolution for Python projects and enhance supply chain security.
Research
Security News
Socket researchers have discovered multiple malicious npm packages targeting Solana private keys, abusing Gmail to exfiltrate the data and drain Solana wallets.