App reviews, troubleshooting, and recommendations
Hello,
I'm trying to update seo title and description metafield via a GraphQL APIAdmin call.
I'm using a make.com module to do this and the follow is the query:
mutation UpdateArticleMeta {
articleUpdate(
id: "gid://shopify/Article/{{43.id}}",
article: {
metafields: [
{
namespace: "seo",
key: "title",
type: "single_line_text_field",
value: "{{40.result.meta_title}}"
},
{
namespace: "seo",
key: "description",
type: "multi_line_text_field",
value: "{{40.result.meta_description}}"
}
]
}
) {
article {
id
metafields(first: 2) {
edges {
node {
namespace
key
value
}
}
}
}
userErrors {
field
message
}
}
}
I've tried on the GraphQL App on Shopify and via make.com.
The call return 200 with no error but the fields never change.
Any idea?
Thanks
Learn what's possible with customizing Shopify Checkout beyond what's available out of...
By Shopify Feb 19, 20252m ago Learn the essential skills to navigate the Shopify admin with confidence. T...
By Shopify Feb 12, 2025Learn how to expand your operations internationally with Shopify Academy’s learning path...
By Shopify Feb 4, 2025