Is there a native Liquid object or filter that exposes segment membership in storefront and theme app extensions?
I am familiar with using customer.tags for this, but tags are static and require manual updates or automation flows. I’d love to leverage the dynamic nature of the new Customer Segments feature.
Pseudo-code of what I’m hoping for:
{% if customer.segments contains ‘vip_segment_id’ %}
{% render ‘vip-banner’ %}
{% endif %}