Our app requires some metafield data that the app create in a custom namespace. After the recent update, the specified metafieldNamespace is no longer returned.
Can you please advice on how I can fix this without having to trigger another graphQl call?
This is the variable I use to create the webhookSubscription:
const topic =
{
topic: "PRODUCTS_UPDATE",
includeFields: ["id", "title", "updated_at", "variants"],
metafieldNamespaces: ["msa"],
},
const variables = {
topic: topic.topic,
webhookSubscription: {
callbackUrl: `${process.env.SHOPIFY_APP_URL || process.env.APP_URL}/webhooks`,
format: "JSON",
includeFields: topic.includeFields,
metafieldNamespaces: topic.metafieldNamespaces,
},
};
And returned about webhookSubscriptionCreate
{"webhookSubscriptionCreate":{"webhookSubscription":{"apiVersion":{"displayName":"2024-10"},"id":"gid://shopify/WebhookSubscription/<...>","topic":"PRODUCTS_UPDATE","format":"JSON","includeFields":["id","title","updated_at","variants"],"endpoint":{"__typename":"WebhookHttpEndpoint","callbackUrl":"https://<...>/webhooks"},"metafieldNamespaces":["msa"]}}}