12 lines
226 B
TypeScript
12 lines
226 B
TypeScript
import { Field, InputType } from '@nestjs/graphql';
|
|
import { IsEmail, IsNotEmpty } from 'class-validator';
|
|
|
|
@InputType()
|
|
export class ResetPasswordInput {
|
|
|
|
@Field(() => String)
|
|
@IsNotEmpty()
|
|
@IsEmail()
|
|
email: string
|
|
}
|