Skip to content
This repository was archived by the owner on Apr 16, 2024. It is now read-only.

Files

Latest commit

3515426 · Apr 24, 2020

History

History
This branch is 6898 commits behind gatsbyjs/gatsby:master.

graphql-skip-limit

graphql-skip-limit

This library provides helper functions for building Relay-style connections but with skip/limit style pagination instead of Relay's cursor-based pagination.

It is built and maintained for React modern site generator Gatsby to drive its GraphQL-based data layer.

It is a port from graphql-relay so can be used in a similar fashion. See the tests in src/connection/__tests__ for an example of using this library.

Connections built with this library can be queried like the following:

{
  allFile(skip: 1, limit: 10) {
    edges {
      node {
        id
      }
    }
  }
}

In this query, we skip the first result and limit our results to 10.