๐งพ GetProductOptions
Type
The getProduct()
method accepts a single argument of type GetProductOptions
. This type controls:
- How the product is fetched (by handle or ID)
- Which metafields to retrieve and how to parse them
- How the final data is transformed and structured
๐ง Interfaceโ
export interface GetProductOptions {
id?: string;
handle?: string;
customMetafields?: CustomMetafieldDefinition[];
variantMetafields?: CustomMetafieldDefinition[];
options: {
locale?: string;
resolveFiles?: boolean;
renderRichTextAsHtml?: boolean;
camelizeKeys?: boolean;
transformMetafields?: (
raw: Record<string, Record<string, string>>,
casted: Record<string, any>,
definitions: ResolvedMetafieldInfo[]
) => Record<string, any>;
transformVariantMetafields?: (
raw: Record<string, Record<string, string>>,
casted: Record<string, any>,
definitions: ResolvedMetafieldInfo[]
) => Record<string, any>;
};
}
๐ id
or handle
โ
id?: string
handle?: string
You must provide either a Shopify product handle
or a gid://
formatted product ID. If neither is defined, the function will return an error.
Using handle
is preferred for most storefront implementations.
๐งฉ customMetafields
โ
customMetafields?: CustomMetafieldDefinition[]
An array of typed metafields you want to fetch at the product level.
Each metafield must be defined as:
{ field: "custom.warranty", type: "single_line_text" }
โก๏ธ See full list of supported types in Custom Metafields โ
๐ variantMetafields
โ
variantMetafields?: CustomMetafieldDefinition[]
Same format as customMetafields
, but applies to each variant within the product.
Useful for variant-level sizing, color, bundle logic, or pricing details.
โ๏ธ options
โ
The nested options
object lets you customize how your metafields and data are processed:
locale?: string
โ
Specify the locale (e.g., "en"
, "fr"
) to get localized product content from Shopify, if available.
resolveFiles?: boolean
โ
When true
, file metafields (e.g., PDFs, certificates) are resolved into structured objects. Otherwise, a raw GID string is returned.
renderRichTextAsHtml?: boolean
โ
If true
, rich_text
fields will be parsed and returned as HTML strings. This is useful for rendering HTML in your frontend.
camelizeKeys?: boolean
โ
When enabled (default), all metafield keys will be camelCased โ for example, custom.warranty_period
becomes custom.warrantyPeriod
.
transformMetafields
โ
transformMetafields?: (
raw, casted, definitions
) => Record<string, any>
Lets you transform product-level metafields after casting โ e.g., add summaries, flags, or flatten nested structures.
transformVariantMetafields
โ
transformVariantMetafields?: (
raw, casted, definitions
) => Record<string, any>
Same as above, but applied per variant metafield block.
Useful for:
- Bundled product enrichment
- Conditional pricing tags
- Tagging swatches or options
โ Example Useโ
const product = await getProduct({
handle: "solar-kit-6kw",
customMetafields: [
{ field: "custom.brand", type: "single_line_text" },
{ field: "custom.weight", type: "decimal" },
],
options: {
camelizeKeys: true,
resolveFiles: true,
transformMetafields: (raw, casted) => ({
...casted,
isHeavy: casted["custom.weight"] > 30,
}),
},
});
Next: Result Type โ
Description
Type definitions for getProduct options including metafields and configuration.