Another good use case is report generation that involves audit trailing the details of the report generated. So one could just pull the data from the source and insert the requested report into a new table on the fly. Lots of great use. Came across it recently. I wonder if orm's like prisma rely on this to return data in any form.
Yes, Olúwásetèmi Ojo It excels at report generation scenarios. I'm not sure if Prisma uses it though, but I've discovered most ORMs do not have a custom support for it. Laravel's Eloquent has some primitive support.
Olúwásetèmi Ojo
Developer on a journey. I'm a Developer. I make all sort of stuff with Typescript, JavaScript, React, Nodejs. You can find my work on GitHub
Another good use case is report generation that involves audit trailing the details of the report generated. So one could just pull the data from the source and insert the requested report into a new table on the fly. Lots of great use. Came across it recently. I wonder if orm's like prisma rely on this to return data in any form.