You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Error mappers are functions converting validation failure to graphql error
All extension methods has overrides to pass more error mappers
All error mappers can be composed with other
publicclassNotEmptyNameValidator:AbstractValidator<ExampleInput>{publicNotEmptyNameValidator(){RuleFor(input =>input.ExampleProperty).NotEmpty().WithMessage("Property is empty").WithErrorCode("ERR0123");}}