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

Methods

Quick Example

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

// Get single collection
const collection = await shoppy.collections.get('summer-sale')