Skip to content

Instantly share code, notes, and snippets.

@klevu
Created June 23, 2020 16:01
Show Gist options
  • Save klevu/82dc204fa7f0fec884f3aa95df6e151c to your computer and use it in GitHub Desktop.
Save klevu/82dc204fa7f0fec884f3aa95df6e151c to your computer and use it in GitHub Desktop.
Shopify Blog - Faster Metafields 5
mutation {
bulkOperationRunQuery(
query: """
{
products {
edges {
node {
id
metafields {
edges {
node {
namespace
key
value
}
}
}
variants {
edges {
node {
id
metafields {
edges {
node {
namespace
key
value
}
}
}
}
}
}
}
}
}
}
"""
) {
bulkOperation {
id
status
}
userErrors {
field
message
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment