portal-www
Version:
Nova Portal Website. Based on Next starter by Ueno
27 lines (25 loc) • 447 B
text/typescript
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
}
}
}
}
}
}
`;