Last active
January 28, 2025 17:16
-
-
Save klevu/32705fea16302cd1c49b70db4f181d4c to your computer and use it in GitHub Desktop.
Shopify Metafields with GraphQL
This file contains 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
{ | |
product(first: 50) { | |
edges { | |
node { | |
name | |
description | |
} | |
} | |
} | |
} |
This file contains 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
{ | |
products(first: 250) { | |
edges { | |
node { | |
metafields(first: 250) { | |
edges { | |
node { | |
namespace | |
key | |
value | |
} | |
} | |
} | |
} | |
} | |
} | |
} |
This file contains 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
{ | |
productVariants(first: 50) { | |
pageInfo { | |
hasNextPage | |
} | |
edges { | |
cursor | |
node { | |
legacyResourceId | |
product { | |
legacyResourceId | |
} | |
metafield1: metafield( | |
namespace: "klevu" | |
key: "metafield1" | |
) { | |
value | |
} | |
metafield2: metafield( | |
namespace: "klevu" | |
key: "metafield2" | |
) { | |
value | |
} | |
metafield3: metafield( | |
namespace: "klevu" | |
key: "metafield3" | |
) { | |
value | |
} | |
} | |
} | |
} | |
} |
This file contains 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
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 | |
} | |
} | |
} |
quyet-akr
commented
Feb 14, 2022
•
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment