Skip to main content
shoppy.pages
Query Shopify pages with support for pagination, field selection, and search.
See Types for full interface definitions.

Methods

Quick Example

// List pages with pagination
const { items, pageInfo } = await shoppy.pages
    .limit(12)
    .select(['title', 'handle', 'bodySummary'])
    .list()

// Get single page
const page = await shoppy.pages.get('about-us')