Skip to content
Platform launch: May 1, 2026
Try all features now — create your store for free
Back to Blog
Metaobjects Now Available on Your Storefront
Cartly Team

Metaobjects Now Available on Your Storefront

releasev1.12metaobjectsliquid

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