Donte
10/04/2021, 8:58 AMConst {user} = ctx.Prisma.user.findMany({
where:{
resetToken: args.resetToken,
resetTokenExpiry:???
}
})
Is there another way to check for resetTokenExpiry?
Thanks 😊Ryan
10/04/2021, 9:55 AMctrl+space
n VSCode to check the suggestions.
As you’re using GraphQL, have a look at this doc to enable Prisma autocomplete for your resolvers.