Created
September 29, 2024 23:07
-
-
Save jaredkc/bc6cddbbf6ca0f196e6c6cc5eb1e0567 to your computer and use it in GitHub Desktop.
Shopify GraphQL query for 2 specific products
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
query { | |
products(first: 10, query: "(id:1234567890) OR (id:0987654321)") { | |
edges { | |
node { | |
title | |
id | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment