Last active
September 28, 2024 13:17
-
-
Save jaredkc/002ae7f4334c9e48b74edbcc79bfb99d to your computer and use it in GitHub Desktop.
Reviews.io Shopify Product Metafields
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
""" | |
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