Hi,
What GraphQL should I write to get productVariants that matches multiple ids?
Want something like this...
https://shopify.dev/tools/graphiql-admin-api
{ productVariants( first:250 ???? id: in: ['gid://shopify/ProductVariant/19523123216406', 'gid://shopify/ProductVariant/19523123937302'] ???? ) { edges { node { id, title, sku, inventoryQuantity } } } }
Like this SQL:
SELECT ... WHERE id IN ( 'gid://shopify/ProductVariant/19523123216406', 'gid://shopify/ProductVariant/19523123937302', 'gid://shopify/ProductVariant/19523125313558' );
User | Count |
---|---|
16 | |
12 | |
7 | |
6 | |
5 |