Get Channel ID

Where can I find the id of my channel?

gid://shopify/Channel/[ID]
1 Like

Hi @kindahome

You can retrieve a list of channels on your shop using a query like:

{
  channels(first:10) {
    edges {
      node {
        id
        name
      }
    }
  } 
}

Hope this helps!

Hello

Yes, thanks.

I had already posted the answer in other place and forgot to close this one.

From:
Solved: Getting channels of product - Shopify Community

{
  channels (first: 50){
    edges{
      node{
        id
        name
      }
    }
  }
}