Skip to main content

🧩 Custom Metafields

Shopify metafields allow you to add rich, structured content to your products, variants, collections, pages, and more. However, the Storefront API returns all metafield values as strings β€” even for numbers, dates, booleans, or JSON.

This SDK solves that by letting you define typed metafields, so they are automatically parsed and returned in the correct format.

caution

Custom metafields only works if it meets specific Shopify conditions:

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

Without these settings, the API call will return empty for the selected metafields.


🧠 Why use types?​

Shopify doesn't cast metafield values for you β€” everything comes back as a string:

Shopify MetafieldReturned value
true_false"true"
decimal"49.99"
json"{\"size\": \"XL\"}"

With the SDK, you define your expected types using the CustomMetafieldDefinition format:

{
field: "custom.warranty",
type: "single_line_text"
}

From there, the SDK handles everything β€” parsing values, resolving references, converting to numbers or booleans, or even rendering rich_text as HTML.


🧬 Data Type Mapping​

Here’s a quick guide to map Shopify metafield types to SDK-supported type values:

πŸ“† Date and Time​

Shopify TypeUse in SDK (type)Notes
Date and timedate_and_timeCast to JavaScript Date object
DatedateCast to JavaScript Date object

πŸ“ Measurement​

Shopify TypeUse in SDK (type)Notes
DimensiondimensionCast to number
VolumevolumeCast to number
WeightweightCast to number

πŸ”’ Number​

Shopify TypeUse in SDK (type)Notes
DecimaldecimalCast to number
IntegerintegerCast to number

πŸ“ Text​

Shopify TypeUse in SDK (type)Notes
Single line textsingle_line_textPlain string
Multi-line textmulti_line_textPlain string
Rich textrich_textJSON or rendered HTML (if renderRichTextAsHtml: true)

πŸ”— Reference​

Shopify TypeUse in SDK (type)Notes
ProductProductCast to array of GIDs or objects
Product variantProduct_variantSame as above
CollectionCollectionSame as above
CustomerCustomerSame as above
CompanyCompanySame as above
PagePageCast to reference β€” can enrich title, handle, etc.
MetaobjectMetaobjectCast to reference β€” optional transformation
FileFileFully resolvable if resolveFiles: true

πŸ§ͺ Other​

Shopify TypeUse in SDK (type)Notes
True or falsetrue_falseCast to boolean
ColorcolorHex string (e.g. #ffffff)
IDidRaw ID string
RatingratingCast to number
URLurlRaw string
MoneymoneyCast to number
Link(Use url)Handled as url

🧠 Advanced​

Shopify TypeUse in SDK (type)Notes
JSONjsonParsed to object or array
Mixed reference❌ Not supportedNot currently supported by SDK

πŸ›  Defining your fields​

Metafields must be defined using the shape below:

interface CustomMetafieldDefinition {
field: "custom.namespace_key"; // e.g., "custom.warranty"
type: ShopifyCustomFieldType;
}

The SDK parses and organizes your data into a nested object like this:

metafields: {
custom: {
warranty: "10 years",
weight: 12.5,
documents: [{ id: "gid://shopify/File/...", url: "..." }]
}
}

πŸ”„ How casting works​

The SDK automatically converts raw string values using a utility called castMetafieldValue(), based on the type you define:

  • decimal, money, rating β†’ parsed as numbers
  • true_false β†’ parsed as booleans
  • json β†’ parsed as JSON
  • date, date_and_time β†’ cast to JavaScript Date
  • rich_text β†’ optionally rendered as HTML
  • File β†’ optionally resolved to object with url, alt, etc.
  • Product, Page, etc. β†’ parsed as references (or enriched in transformMetafields)

This makes your frontend code cleaner, safer, and type-friendly.


πŸ§ͺ Example​

customMetafields: [
{ field: "custom.brand", type: "single_line_text" },
{ field: "custom.weight", type: "decimal" },
{ field: "custom.warranty", type: "single_line_text" },
{ field: "custom.short_description", type: "rich_text" },
{ field: "custom.certificates", type: "File" },
];

These values will be returned already parsed:

product.metafields.custom.weight; // β†’ 12.5 (number)
product.metafields.custom.certificates[0].url; // β†’ resolved file URL
product.metafields.custom.short_description; // β†’ HTML string (if rendered)

πŸ“¦ Advanced: resolveFiles and renderRichTextAsHtml​

To unlock extra features:

options: {
resolveFiles: true,
renderRichTextAsHtml: true
}
  • resolveFiles: Automatically converts file GIDs to structured file objects
  • renderRichTextAsHtml: Parses Shopify’s JSON schema into safe HTML

πŸ” Want even more control?​

You can use transformMetafields or transformVariantMetafields to modify the final shape of the data β€” flatten it, add summaries, or even make conditional flags.

➑️ Learn how in Options β†’


Would you like to continue to Examples β†’?