π¦ FetchCollectionResult
Type
The getCollection()
function returns a standardized object that includes:
- Collection-level metafields
- Optional product list
- Pagination info (if products are included)
- Filter options (if supported)
- And full error handling
type FetchCollectionResult = {
data: Product[];
pageInfo: ProductsPageInfo | null;
availableFilters?: FilterGroup[];
collectionMetafields?: Record<string, any>;
error: string | null;
};
ποΈ data: Product[]
β
Array of resolved product objects. Each product may include:
id
,title
,handle
,descriptionHtml
price
,compareAtPrice
(from first variant)images[]
,featuredImage
variants[]
: each with variant-specific metafields- Custom metafields if
productMetafields
orvariantMetafields
are provided
For more details, see the Product Types documentation.
π collectionMetafields
β
Custom fields resolved from the collectionβs metafields, defined using collectionMetafields
.
collectionMetafields: {
customType: "Inverters",
showOnWebsite: true,
...
}
These are parsed, casted, optionally transformed, and camelized if enabled.
π pageInfo: ProductsPageInfo
β
Relay-style cursor-based pagination object (only when includeProducts: true
):
type ProductsPageInfo = {
hasNextPage: boolean;
hasPreviousPage: boolean;
endCursor: string | null;
startCursor: string | null;
};
Use these values to paginate forward or backward in your UI.
𧩠availableFilters?: FilterGroup[]
β
Array of filters available for the current product collection.
Returned only if Shopify filtering is enabled on metafields.
type FilterGroup = {
id: string;
label: string;
values: {
id: string;
label: string;
count: number;
}[];
};
availableFilters
only works for metafields configured in Shopify Admin.
You must enable:
- β Storefront filtering
- β Storefront API access
Location: Settings β Custom data β Products β [Definition] β Options
β error: string | null
β
A human-readable error message, if something went wrong.
Always check this before using data
or pageInfo
.
β Youβre done with types!
Description
Type definition for the getCollection() result structure.