GraphQL Bulk Query for Metafields of ProductImages doesn't work anymore

GraphQL Bulk Query for Metafields of ProductImages doesn't work anymore

freund_yap
Shopify Partner
1 0 0

Hi,

 

I have this bulk query, which worked perfectly fine till August 20th 2024:

{
      products {
          edges {
            node {
              id
              images {
                edges {
                    node {
                        id
                        src
                        altText
                        metafields {
                            edges {
                                node {
                                    id
                                    key
                                    value
                                    type
                                    namespace
                                }
                            }
                        }
                    }
                }
              }
              variants {
                edges {
                    node {
                        id
                        sku
                        image {
                            id
                            src
                            altText
                        }
                        metafields {
                            edges {
                                node {
                                    id
                                    key
                                    value
                                    type
                                    namespace
                                }
                            }
                        }
                    }
                }
              }
            }
          }
      }
    }

product.edges.node.images.edges.node.metafields is not returned anymore.
The API is not returning any errors!

 

I have no idea why this is not working anymore and I have also no idea how to request the metafields with an alternative approach.
The metafields for Product or ProductVariant are still working.

 

Thanks for any hints!

 

Replies 0 (0)