Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 | import { GraphQLList } from 'graphql'; import { getMostVisited } from '../../../api/analytics'; import { articleModel } from '../../../model/article'; import { GraphQLMostVisited } from '../index'; interface IItem { dimensions: string[]; metrics: Array<{ values: string[]; }>; } const getArticleByUrl = async (url: string) => { const splitted = url.split('/'); if (splitted.length === 3) { return articleModel.findOne({ 'category.slug': splitted[1], slug: splitted[2], }); } return; }; export default { type: new GraphQLList(GraphQLMostVisited), resolve: async () => { // TODO: try catch const response = await getMostVisited(); const mostVisited = await Promise.all( response.data.reports[0].data.rows.map(async (i: IItem) => { const article = await getArticleByUrl(i.dimensions[0]); if (article) { return { article, value: i.metrics[0].values[0], }; } return; }), ); return mostVisited.filter((i: any) => i); }, }; |