Our Partner & Developer boards on the community are moving to a brand new home: the .dev community forums! While you can still access past discussions here, for all your future app and storefront building questions, head over to the new forums.

The changes in Translate & Adapt initiate the product/update webhook but dont change updated_at

The changes in Translate & Adapt initiate the product/update webhook but dont change updated_at

DanteFXX
Shopify Partner
15 2 9

Hi,

I am using bulk import for products, which is based on the last updated_at date. At the same time I need to retrieve information about any changes in product localization.

Here is an example of the query I am using:

 

 

{
    products(first:50) {
        edges {
            node {
                id
                title 
                status
                createdAt
                updatedAt
                de:translations (locale: "de"){
                    key
                    locale
                    value
                }
                fr:translations (locale: "fr"){
                    key
                    locale
                    value
                }
            }
        }
        nodes {
            id
            title
        }
        pageInfo {
            hasPreviousPage
        }
    }
}

I noticed that changes made in the Translate & Adapt app for the product trigger the product webhook, but they do not update the product's "updated_at" field. As a result, my bulk import process does not retrieve any updated data. Additionally, the product update webhook does not provide any information about localization. I keep receiving the same data repeatedly. Is there any way to obtain useful information about the modified products?

 

 

 

Replies 2 (2)

richbrown_staff
Shopify Staff
652 96 169

Hey @DanteFXX , are you still needing support here? We can look into this if so

To learn more visit the Shopify Help Center or the Community Blog.

DanteFXX
Shopify Partner
15 2 9

Yes, it would be wonderful.