Fetch multiple pages
shoppy.pages.list()
PagesResult
{ items: ShopifyPage[] pageInfo: { hasNextPage: boolean hasPreviousPage: boolean startCursor: string endCursor: string } }
const { items, pageInfo } = await shoppy.pages.list()
const { items, pageInfo } = await shoppy.pages .limit(10) .select(['title', 'handle', 'bodySummary']) .list()
const { items, pageInfo } = await shoppy.pages.limit(10).list() if (pageInfo.hasNextPage) { // More pages available }