Peter Boomsma
08/26/2021, 4:14 PMremoveAllMovies: () => {
return prisma.movie.deleteMany({});
},
what would be the correct syntax in the schema to reflect this resolver?
type Mutation {
removeAllMovies()
}
obviously doesn't work ^^Ryan
08/27/2021, 5:56 AM