Here’s my sample JSON,
{
car: {
color: 'Red'
},
train: {
color: 'Blue'
}
}
I have added my JSON using metafieldsSet
mutation. What I want to access is car’s color or train’s color from that metafield. But, doing {{ app.metafields.namespace.key.car }}
returns null
. Is this doable? If so, what am I missing?