Skip to content

Instantly share code, notes, and snippets.

@jaredkc
Created September 29, 2024 23:07
Show Gist options
  • Save jaredkc/bc6cddbbf6ca0f196e6c6cc5eb1e0567 to your computer and use it in GitHub Desktop.
Save jaredkc/bc6cddbbf6ca0f196e6c6cc5eb1e0567 to your computer and use it in GitHub Desktop.
Shopify GraphQL query for 2 specific products
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