Skip to main content

๐Ÿงพ GetCollectionOptions.options Type

The options field of getCollection() lets you customize how metafields are processed and returned using a shared MetafieldTransformFn type. This gives you full control over formatting and data transformation logic on a per-layer basis: collections, products, and variants.

type MetafieldTransformFn = (
raw: Record<string, Record<string, string>>,
casted: Record<string, any>,
definitions: ResolvedMetafieldInfo[]
) => Record<string, any> | Promise<Record<string, any>>;

type GetCollectionOptions = {
collectionHandle: string;
includeProducts?: boolean;
limit?: number;
cursor?: string;
reverse?: boolean;
sortKey?:
| "TITLE"
| "PRICE"
| "BEST_SELLING"
| "CREATED"
| "ID"
| "MANUAL"
| "RELEVANCE";
filters?: (
| { available?: boolean }
| { variantOption?: { name: string; value: string } }
| { productMetafield: { namespace: string; key: string; value: string } }
| { productTag: string }
| { productType: string }
| { collection?: string }
| { price: { min?: number; max?: number } }
)[];
productMetafields?: CustomMetafieldDefinition[];
collectionMetafields?: CustomMetafieldDefinition[];
variantMetafields?: CustomMetafieldDefinition[];

options?: {
camelizeKeys?: boolean;
resolveFiles?: boolean;
renderRichTextAsHtml?: boolean;
transformCollectionMetafields?: MetafieldTransformFn;
transformProductMetafields?: MetafieldTransformFn;
transformVariantMetafields?: MetafieldTransformFn;
};
};

๐Ÿซ camelizeKeysโ€‹

If true, all metafield keys will be transformed from namespace.key to camelCase format:

camelizeKeys: true;
// "custom.weight" becomes "customWeight"

Useful when returning the result directly to JavaScript clients or frontend frameworks like React or Vue.


๐Ÿ—‚๏ธ resolveFilesโ€‹

Automatically resolve metafields of type file_reference into detailed file objects:

resolveFiles: true;

Youโ€™ll get objects like:

{
originalSrc: "https://cdn.shopify.com/...",
altText: "My uploaded image"
}

Applies to all metafields โ€” collection, product, and variant levels.


๐Ÿ“ renderRichTextAsHtmlโ€‹

Renders rich_text metafields into HTML strings:

renderRichTextAsHtml: true;

If disabled, raw structured rich text will be returned for custom rendering.


๐Ÿง  transformCollectionMetafieldsโ€‹

Allows you to process and enrich collection-level metafields before returning:

transformCollectionMetafields: (raw, casted, definitions) => ({
...casted,
displayTitle: casted["custom.title"]?.toUpperCase(),
});

Useful for display-related formatting, merging references, or handling fallback logic.


๐Ÿง  transformProductMetafieldsโ€‹

Same shape, applied to product-level metafields:

transformProductMetafields: (raw, casted, defs) => ({
...casted,
badge: `${casted["custom.brand"]} - ${casted["custom.country"]}`,
});

You can use this to dynamically generate summaries or map metafields into new keys.


๐Ÿงฌ transformVariantMetafieldsโ€‹

Custom transformer for each variantโ€™s metafields:

transformVariantMetafields: async (raw, casted, defs) => ({
...casted,
label: `${casted["custom.color"]} (${casted["custom.size"]})`,
});

Async-safe โ€” you can fetch other entities or use external APIs.


โœ… Next: Result Types โ†’