𧩠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.
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 Metafield | Returned 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 Type | Use in SDK (type ) | Notes |
---|---|---|
Date and time | date_and_time | Cast to JavaScript Date object |
Date | date | Cast to JavaScript Date object |
π Measurementβ
Shopify Type | Use in SDK (type ) | Notes |
---|---|---|
Dimension | dimension | Cast to number |
Volume | volume | Cast to number |
Weight | weight | Cast to number |
π’ Numberβ
Shopify Type | Use in SDK (type ) | Notes |
---|---|---|
Decimal | decimal | Cast to number |
Integer | integer | Cast to number |
π Textβ
Shopify Type | Use in SDK (type ) | Notes |
---|---|---|
Single line text | single_line_text | Plain string |
Multi-line text | multi_line_text | Plain string |
Rich text | rich_text | JSON or rendered HTML (if renderRichTextAsHtml: true ) |
π Referenceβ
Shopify Type | Use in SDK (type ) | Notes |
---|---|---|
Product | Product | Cast to array of GIDs or objects |
Product variant | Product_variant | Same as above |
Collection | Collection | Same as above |
Customer | Customer | Same as above |
Company | Company | Same as above |
Page | Page | Cast to reference β can enrich title, handle, etc. |
Metaobject | Metaobject | Cast to reference β optional transformation |
File | File | Fully resolvable if resolveFiles: true |
π§ͺ Otherβ
Shopify Type | Use in SDK (type ) | Notes |
---|---|---|
True or false | true_false | Cast to boolean |
Color | color | Hex string (e.g. #ffffff ) |
ID | id | Raw ID string |
Rating | rating | Cast to number |
URL | url | Raw string |
Money | money | Cast to number |
Link | (Use url ) | Handled as url |
π§ Advancedβ
Shopify Type | Use in SDK (type ) | Notes |
---|---|---|
JSON | json | Parsed to object or array |
Mixed reference | β Not supported | Not 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 numberstrue_false
β parsed as booleansjson
β parsed as JSONdate
,date_and_time
β cast to JavaScriptDate
rich_text
β optionally rendered as HTMLFile
β optionally resolved to object withurl
,alt
, etc.Product
,Page
, etc. β parsed as references (or enriched intransformMetafields
)
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 objectsrenderRichTextAsHtml
: 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 β?
Description
Learn how to define and use typed Shopify metafields with the @nextshopkit SDK to extract structured data from your store.