All files / server/gql/categories/mutations CreateCategory.ts

0% Statements 0/14
100% Branches 0/0
100% Functions 0/0
0% Lines 0/13

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                                                                     
import { GraphQLNonNull, GraphQLString } from 'graphql';
import { createCategoryPermissions } from '../../../../shared/permissions';
import { isAuthorized } from '../../../api/cognito';
import { categoryModel, getNewCategoryIndex } from '../../../model/category';
import { slugify } from '../../../utils';
import GraphQLCategory from '../outputs/Category';
 
interface IArgs {
  title: string;
}
 
export default {
  type: GraphQLCategory,
  args: {
    title: {
      type: new GraphQLNonNull(GraphQLString),
    },
  },
  resolve: async (_: any, { title }: IArgs, request: Request): Promise<any> => {
    try {
      isAuthorized(request, createCategoryPermissions);
      const slug = slugify(title);
      const index = await getNewCategoryIndex();
 
      return categoryModel.create({
        title,
        slug,
        index,
      });
    } catch (e) {
      throw new Error(e.message);
    }
  },
};