0.1.0 • Published 2 years ago

@exonest/graphql-connections v0.1.0

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

Graphql Connections (Pagination)

This package is a spec-compliant set of models and utilities based on Relay's Graphql Cursor Connections Specification and is created using Generics

Introduction

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.

  • In queries, you use PaginationArgs to slice and paginate the result.
  • In response, you return Connection objects to provide cursors and a way to tell the client when more results are available.

Installation

On Yarn:

yarn add @exonest/graphql-connections

On NPM:

npm install @exonest/graphql-connections

Usage

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
}

With Prisma

If you use Prisma, there is another spec-compliant package that facilitates returning data as connections: @devoxa/prisma-relay-cursor-connection