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.
@exonest/graphql-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 @exonest/graphql-connections
On NPM:
npm install @exonest/graphql-connections
You can create a new paginated model like so:
import { Paginated } from '@exonest/graphql-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
}
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 @exonest/graphql-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.
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.