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?