Its very similar but just need to use references instead of reference
{
product(id: "gid://shopify/Product/YOUR_PRODUCT_ID") {
metafield(namespace: "my_fields", key: "image") {
references(first: 10) {
edges {
node {
... on MediaImage {
image {
originalSrc
}
}
}
}
}
}
}
}