Fetch all channels for the provided Organization ID.

```graphql
query GetChannels {
  channels(input: {
    organizationId: "some_organization_id"
  }) {
    id
    name
    displayName
    service
    avatar
    isQueuePaused
  }
}
```