如何在 nestjs-graphQL 中验证 phone 数字
how to validate a phone number in nestjs-graphQL
Nest.js
import { Field, InputType } from '@nestjs/graphql';
@InputType()
export class SignUpInput {
@Field()
phone: string;
}
如何验证 phone 号码?
Nest.js
import { Field, InputType } from '@nestjs/graphql';
@InputType()
export class SignUpInput {
@Field()
phone: string;
}
如何验证 phone 号码?