Skip to content
Custom Launch: Get 2 custom integrations free when you migrate to Cartly.
Cartly
Blog / release
RELEASEMay 2, 2026 · 1 min read

Metaobjects Now Available on Your Storefront

Create custom content types - FAQs, testimonials, size guides - and display them on your storefront via Liquid templates or the GraphQL API.

CT
Cartly Team
Engineering & Product
RELEASE
v1.12 · metaobjects · liquid

Metaobjects are now available on the storefront. Define custom content types in Admin and render them anywhere.

What Are Metaobjects?

Metaobjects let you create custom structured content types - FAQs, testimonials, team members, size guides. Define the schema once, add entries in Admin, and they appear on your storefront automatically.

Using in Liquid Templates

Every storefront template now has access to metaobjects.TYPE.entries. No extra setup required.

{% for item in metaobjects.faq_item.entries %}
  {{ item.fields.question }}
{% endfor %}

GraphQL API

Query metaobjects from any headless frontend using metaobjects(type) or metaobject(type, handle). Access is controlled per-definition - storefront or admin_only.

Cache Invalidation

Every time you update a metaobject entry, Cartly automatically invalidates the Liquid cache and purges the CDN. Your storefront always shows fresh content.

Getting Started

  1. Go to Admin - Content - Metaobjects
  2. Create a new Definition (e.g. FAQ Item with question + answer fields)
  3. Add entries
  4. Use metaobjects.faq_item.entries in your Liquid templates

Developer Resources

— RELATED POSTS