Skip to content
This repository has been archived by the owner on Apr 18, 2023. It is now read-only.

Fix default pagination limit #5

Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion example /api/operations/get-all-product-paths.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down