import gql from 'graphql-tag';

const CHANNELS = gql`
  query Channels {
    planCollection(where: { planGroup: { type_contains: "tv" } }) {
      items {
        id
        amount
        interval
        trial {
          title
        }
        product {
          ... on Service_cfService {
            id
            title
            description
            image {
              url
            }
          }
        }
      }
    }
  }
`;
