import gql from 'graphql-tag';

export const FORYOUITEMS = gql`
  query ForYouItems($locale: String) {
    forYouItemCollection(locale: $locale, limit: 5) {
      items {
        image {
          title
          url
        }
        link
        order
        tags
        title
        categoryId
      }
    }
  }
`;

export const DANCEFLOOR = gql`
  query Dancefloor($locale: String) {
    appHomeSection(id: "13j8nQ4MslIm1lZjLXbB0u", locale: $locale) {
      title
      itemsCollection(limit: 10) {
        items {
          ... on AppDancefloorItem_cfContent {
            image {
              description
              url
              title
            }
            url
            title
            themeColor
            subtitle
            tag
          }
        }
      }
    }
  }
`;
