import gql from 'graphql-tag';

export const TITLES = gql`
  query TitleList($locale: String) {
    titleList(id: "3I79Q5E6rsDfMsLcOg8cwP", locale: $locale) {
      titlesCollection {
        items {
          title
          description
          id
        }
      }
    }
  }
`;
