I just found that Product images do have metafield
query {
products(first:10){
edges{
node{
id
images(first:40){
nodes{
id
url
altText
metafields(first:2){
nodes{
key
value
}
}
}
}
}
}
}
}
From the response of above query we can see that images do have metafield with key “alt”.
Is it possible to add one more metafiled there,
I am working on one project where I need to store blurhash of a product, and if this is possible its the perfect place to store the blurhash
