Skip to main content

πŸ›οΈ getCollection() Overview

getCollection() lets you fetch a list of Shopify products with filters, pagination, sorting, and full metafield control β€” all in one go.

Perfect for building product grids, collection pages, or any searchable storefront. It supports deep customization with custom metafields, variant-level data, and smart utilities like camelCase keys, rich text HTML, and more.


βœ… When to use this​

  • Rendering a collection page or product listing
  • Showing filtered search results
  • Powering infinite scroll or SSR product pages
  • Fetching metafield-rich data (e.g. tech specs, weight, warranty)
  • Working with variant-specific content

🧠 Basic Usage​

import { getCollection } from "@/lib/NextShopKit/client";

const result = await getCollection({
collectionHandle: "solar-kits",
includeProducts: true,
filters: [
{
productMetafield: {
namespace: "custom",
key: "category",
value: "Electronics",
},
},
{ price: { min: 500, max: 2000 } },
],
sortKey: "PRICE",
limit: 12,
collectionMetafields: [
{ field: "custom.show_on_website", type: "true_false" },
{ field: "custom.type", type: "single_line_text" },
],
productMetafields: [
{ field: "custom.warranty", type: "single_line_text" },
{ field: "custom.weight", type: "decimal" },
],
variantMetafields: [{ field: "custom.color", type: "single_line_text" }],
options: {
camelizeKeys: true,
resolveFiles: true,
renderRichTextAsHtml: false,
},
});

if (result.error || !result.data) {
// handle error
}

🧩 Metafields support​

Support includes:

  • productMetafields for product-level fields
  • variantMetafields for variant-level fields
  • transformCollectionMetafields, transformProductMetafields, and transformVariantMetafields to modify data
  • Rich media support for files, rich text, and references
  • Output can be camelized for frontend compatibility

➑️ Learn more in Options β†’ and Metafield Types β†’


πŸ” Filters, Pagination, and Sorting​

  • Filters: available, variantOption, productMetafield, productTag, productType, collection, price
  • Pagination: limit, cursor, hasNextPage, hasPreviousPage
  • Sorting: by TITLE, PRICE, BEST_SELLING, CREATED, ID, MANUAL, RELEVANCE
  • Optional reverse boolean for ascending/descending direction

➑️ See Filters β†’, Pagination β†’, and Sorting β†’


πŸ“¦ Returned Data​

Each call returns a full FetchProductsResult:

  • data[]: each with id, title, handle, descriptionHtml, variants[], images[], metafields[]
  • availableFilters[]: optional list of filters (if available from collection)
caution

availableFilters[] only works for product-level metafields that meet specific Shopify conditions:

  • Go to Settings β†’ Custom data β†’ Products in your Shopify admin
  • Select a definition and scroll to Options
  • Enable β€œFiltering for products”
  • Make sure Storefront API access is turned on

Without these settings, the availableFilters array will be empty.

  • pageInfo: Relay-style structure with cursors and pagination info
  • error: If the request fails, an error string is returned with details about the issue.

➑️ Dive deeper into Result Types β†’


🚧 Server-only function​

caution

This function must be called on the server. It uses a private Shopify Admin token.

βœ… Use in:

  • API routes
  • Server Components
  • Route Handlers
  • "use server" functions

🚫 Avoid importing into client-side code.


βœ… Next: Options Reference β†’

Description

Fetch a Shopify collection with optional product data, including filters, pagination, sorting, and metafields using @nextshopkit/sdk.