如何使用类验证器修饰符在graphql类型中比较输入类型中的字段

时间:2020-04-01 10:17:25

标签: typescript graphql typeorm class-validator typegraphql

我有这个示例输入类型:

@InputType() 

class ExampleInputType {

@Field(() => Number)
@IsInt()
fromAge: number

@Field(() => Number)
@IsInt()
toAge: number

}

在此示例中,是否有一种方法可以使用toAge之类的验证器中的装饰器来比较fromAgeclass-validator字段?

1 个答案:

答案 0 :(得分:-1)

恐怕您所能获得的最多是条件验证:

https://github.com/typestack/class-validator#conditional-validation