Paginate backward through pages
shoppy.pages.before(cursor)
cursor
string
pageInfo
PagesQueryBuilder
// Get a page const currentPage = await shoppy.pages.limit(10).list() // Get previous page if (currentPage.pageInfo.hasPreviousPage) { const previousPage = await shoppy.pages .limit(10) .before(currentPage.pageInfo.startCursor) .list() }