Код: Выделить всё
$requests = $shop->api()->graph(
'{
publication(id: "gid://shopify/Publication/11111111") {
id
products(first:250) {
edges {
node {
id
title
}
}
pageInfo {
hasNextPage
endCursor
}
}
}
}
Код: Выделить всё
$requests = $shop->api()->graph(
'{
publication(id: "gid://shopify/Publication/11111111") {
id
products(first:250, after:"eyJ111N0X2lkIassssVlIjoiNjg111111111111111111") {
edges {
node {
id
title
}
}
pageInfo {
hasNextPage
endCursor
}
}
}
}
Как реализовать нумерацию страниц с публикациями и продуктами, если они есть в публикации более 250 продуктов?
Подробнее здесь: https://stackoverflow.com/questions/784 ... tion-issue