Skip to content

Instantly share code, notes, and snippets.

@jaredkc
Created April 29, 2024 14:16
Show Gist options
  • Save jaredkc/002ae7f4334c9e48b74edbcc79bfb99d to your computer and use it in GitHub Desktop.
Save jaredkc/002ae7f4334c9e48b74edbcc79bfb99d to your computer and use it in GitHub Desktop.
Reviews.io Shopify Product Metafields
"""
Metafields:
- reviewscouk.single_line_text_field
- reviewscouk.number_integer
- reviewscouk.static_product_widget
"""
{
productByHandle(handle: "your-product-handle") {
title
metafields: metafields(
first: 25
namespace: "reviewscouk"
) {
edges {
cursor,
node {
id
key
type
value
namespace
updatedAt
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment