Hey @RaviAmbasana ,
You can query all product variants of a product using this -
{
product(id: "gid://shopify/Product/1234") {
variants(first: 15) {
edges {
node {
id
sku
}
}
}
}
}
Hope this helps.