From ecd5a029eebcaf0e43dabde74df98dbf8b00f440 Mon Sep 17 00:00:00 2001 From: Dima Pasieka Date: Mon, 23 May 2022 16:04:58 -0700 Subject: [PATCH] Fix default pagination limit --- example /api/operations/get-all-product-paths.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example /api/operations/get-all-product-paths.ts b/example /api/operations/get-all-product-paths.ts index 71522be..ab9e3f2 100644 --- a/example /api/operations/get-all-product-paths.ts +++ b/example /api/operations/get-all-product-paths.ts @@ -7,7 +7,7 @@ import filterEdges from '../utils/filter-edges' import { BigcommerceConfig, getConfig } from '..' export const getAllProductPathsQuery = /* GraphQL */ ` - query getAllProductPaths($first: Int = 100) { + query getAllProductPaths($first: Int = 50) { site { products(first: $first) { edges {