How to Retrieve Sales Channel Details for a Product via Shopify API or GraphQL?

Hi @snamdev

You can use below query to retrieve sales channels

{
  product(id: "gid://shopify/Product/8310540468414") {
    id
    title
    productPublications(first: 10) {
      edges {
        node {
          channel {
            name
          }
          
        }
      }
    }
  }
}

Thank you.

D.P.