I created a metaobject for a blog post and added data to it. On the frontend, the data shows up in JSON format, but when I try to access specific fields from the metaobject, they don’t display
{% assign metaobject = article.metafields.custom.recommendation_blog.value %}
{{ metaobject | json }}
{% assign recommenation = metaobject.recommendation.value %}
{% assign description = metaobject.description.value %}
<div class="recommendation">
<div class="top-recommenation">
<h1>
test--{{ metaobject.recommenation.value }}
</h1>
</div>
</div>