xxxxxxxxxx
# Get a few products from the catalog
# Stores in pre-launch or maintenance mode may reject queries.
# Access from Control Panel > Advanced Settings > Storefront API Playground
# or browse privately and query against https://buybutton.store/graphql
query paginateProducts(
$pageSize: Int = 3
$cursor: String
# Use GraphQL variables to change the page size, or inject the endCursor as "cursor"
# to go to the next page!
) {
site {
products (first: $pageSize, after:$cursor) {
pageInfo {
startCursor
endCursor
}
edges {
cursor
node {
xxxxxxxxxx
{
"Authorization": "Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJFUzI1NiJ9.eyJlYXQiOjE3NjcxMzkyMDAsInN1Yl90eXBlIjoyLCJ0b2tlbl90eXBlIjoxLCJjb3JzIjpbImh0dHBzOi8vZGV2ZWxvcGVyLmJpZ2NvbW1lcmNlLmNvbSJdLCJjaWQiOjEsImlhdCI6MTU3NjI1MzgyNCwic3ViIjoiM3dtZThrcWtrNjQwNzZueWljMGkzamk0NG5wajQ2byIsInNpZCI6OTk5MzMxNzg0LCJpc3MiOiJCQyJ9.Rqt6hNI2W-XSOzHl4pqtfhAOygwka6atCIaIZ_WAa9v3dOctnBlZpBV5wzd3ICCy4sTCOZ9mJwcFH5_CHmJpNQ"
}
{
"errors": [
{
"message": "Failed to fetch",
"stack": "TypeError: Failed to fetch\n at https://developer.bigcommerce.com/_next/static/chunks/pages/_app-593f21ba09fc0257.js:19:11083\n at fetch (https://developer.bigcommerce.com/_next/static/chunks/pages/graphql-storefront/playground-958e1197dca0b17f.js:1:13452)\n at l (https://developer.bigcommerce.com/_next/static/chunks/64499-0adcf606462559e1.js:1:4828)\n at l.next (<anonymous>)\n at https://developer.bigcommerce.com/_next/static/chunks/64499-0adcf606462559e1.js:1:5245\n at new Promise (<anonymous>)\n at https://developer.bigcommerce.com/_next/static/chunks/64499-0adcf606462559e1.js:1:4994\n at https://developer.bigcommerce.com/_next/static/chunks/64499-0adcf606462559e1.js:6:802\n at fetchIntrospectionData (https://developer.bigcommerce.com/_next/static/chunks/64499-0adcf606462559e1.js:33:4366)\n at https://developer.bigcommerce.com/_next/static/chunks/64499-0adcf606462559e1.js:33:4822\n at https://developer.bigcommerce.com/_next/static/chunks/64499-0adcf606462559e1.js:33:5018\n at uI (https://developer.bigcommerce.com/_next/static/chunks/framework-61c213e4782b3a33.js:9:84056)\n at oU (https://developer.bigcommerce.com/_next/static/chunks/framework-61c213e4782b3a33.js:9:113102)\n at oC (https://developer.bigcommerce.com/_next/static/chunks/framework-61c213e4782b3a33.js:9:95921)\n at r8 (https://developer.bigcommerce.com/_next/static/chunks/framework-61c213e4782b3a33.js:9:44813)\n at https://developer.bigcommerce.com/_next/static/chunks/framework-61c213e4782b3a33.js:9:111548\n at oI (https://developer.bigcommerce.com/_next/static/chunks/framework-61c213e4782b3a33.js:9:111554)\n at oS (https://developer.bigcommerce.com/_next/static/chunks/framework-61c213e4782b3a33.js:9:94924)\n at x (https://developer.bigcommerce.com/_next/static/chunks/framework-61c213e4782b3a33.js:33:1364)\n at MessagePort.T (https://developer.bigcommerce.com/_next/static/chunks/framework-61c213e4782b3a33.js:33:1894)"
}
]
}