run eslint

This commit is contained in:
2024-10-15 20:05:54 +07:00
parent c208c27a64
commit 7d7765c70f
15 changed files with 833 additions and 780 deletions

View File

@@ -94,7 +94,9 @@ export class ServiceSchema extends PothosSchema {
}),
},
resolve: async (query, root, args, ctx, info) => {
return await this.prisma.service.create({ data: args.input });
return await this.prisma.service.create({
data: args.input,
});
},
}),
updateService: t.prismaField({