the problem is entering the query parameters using Swagger UI in a way that Swagger UI would allow me to input the parameters in some form fields and it would encode the parameters according to some settings as
What is the best way to map database entities to DTO's in NestJs? There is a popular automapper package (automapper-ts) that could be very useful. Has anyone used it with nestjs? If so how would you go about to import it and create maps?
The first we are going to create is the TodoController, so we create a todo folder in the src folder and inside we create the todocontroller.ts. import { Controller, Get, Param } from '@nestjs/common'; import { ApiOkResponse, ApiOperation, ApiTags } from '@nestjs/swagger'; import ...
I've opened a question in Stack Overflow but I haven't received any feedback. I'm using Nest.js with TypeORM and I'm also using Nest.js Swagger module to generate the API docs. I'd like to see in Swagger the attributes for ManyToOne relationships.Expected behaviorI've added the ApiMod...
NUnit, Insomnia, Swagger for API testing ✅ Networking & Security: Wireshark, OpenSSL, Nmap for network analysis 🔍 Cybersecurity tools like Havoc 🔒 Data Analysis & Business Intelligence: Power BI, Hadoop for data analysis 📈 Scripting & Automation: PowerShell, Bash, Python, Node.js,...
Backend needs to get notified that the network request has been cancelled (I didn't find a lot on this topic, but I've seen that nestJs supports this for example) Backend needs to potentially un-do all the work it has already done (rollback db transaction, delete files) I think the ...