Skip to main content

↕️ Sorting Products

The getCollection() function supports sorting with Shopify’s sortKey values and an optional reverse flag.

This lets you control the order of returned products — by price, title, popularity, and more.


🧠 Usage

const result = await getCollection({
sortKey: "PRICE",
reverse: true,
limit: 12,
});

🧮 Available Sort Keys

type ProductSortKey =
| "TITLE"
| "PRICE"
| "BEST_SELLING"
| "CREATED"
| "ID"
| "MANUAL"
| "RELEVANCE";
Sort KeyDescription
TITLEAlphabetical (A → Z)
PRICEBased on first variant’s price
BEST_SELLINGBased on Shopify's sales data
CREATEDNewest products first
IDInternal Shopify ID
MANUALCustom sort order (only works in collections with manual sorting)
RELEVANCEDefault when using search

🔁 Reversing Sort Direction

You can use the reverse option to flip the sort direction:

reverse: true; // descending
reverse: false; // ascending (default)
  • PRICE + reverse: true → highest to lowest
  • TITLE + reverse: false → A → Z

⚠️ Notes

  • Not all sort keys are supported in all contexts.
  • MANUAL only works within collections that have manual ordering enabled. For more details, refer to the Shopify documentation on collection layout.
  • RELEVANCE is best used with search-based queries.

✅ Next: Types Reference →

Description

Sort your Shopify product results by price, title, date, and more.