Я хочу выставить метаполя продукта из shopify в мой API Storefront. Я имею в виду следующую документацию. https://help.shopify.com/en/api/guides/metafields/storefront-api-metafields
Ниже приведено содержимое моего тела
mutation($input: MetafieldStorefrontVisibilityInput!) {
metafieldStorefrontVisibilityCreate( input: $input ) {
metafieldStorefrontVisibility {
id
}
userErrors {
field message
}
}
}
Ниже приведены переменные GRAPHQL
{
"input": {
"namespace": "global",
"key": "description_tag",
"ownerType": "PRODUCT"
}
}
Ниже приведен URL-адрес
https://posdev07.myshopify.com/admin/api/2019-07/graphql.json
При выполнении запроса появляется следующая ошибка.
{"errors":{"query":"Required parameter missing or invalid"}}