Tag: zod

  • Validation error with zodValidationPipe in nestjs

    Validation error with zodValidationPipe in nestjs

    0 I have the following graphql. input UpdateStudentInput { name: String motherName: String birthDate: String gender: Gender email: String password: String avatar: String } And I have the following mutation: updateStudent(updateStudentInput: UpdateStudentInput!, studentId: String): Student! but when I try to mutate I get a validation error : mutation { updateStudent(updateStudentInput: { name: "Abner Matheus Gomes…