kepelrs
kepelrs
I'm experiencing the same issue as OP. Applied the recommendations from https://www.chartjs.org/docs/3.8.0/general/performance.html without significant improvements unless I disable animations (which is not an option in my context)
My solution on Angular 8 ```typescript import { trigger, transition, useAnimation } from '@angular/animations'; import { flash } from 'ng-animate'; @Component({ selector: "my-component", templateUrl: "my-component.html", styleUrls: ["my-component.scss"], animations: [trigger("flash", [transition("0...
Seems like this may be a somewhat common need. See https://github.com/kepelrs/nestjs-prisma-crud-schematics/issues/83
Hi. The library should work fine with any relational database supported by prisma. I personally use it in projects with PostgreSQL, MySQL and SQLite. I have yet to try it...
Hey! Sounds like a fun idea. The main logic of this package should be portable to anything running prisma. I was thinking of extracting that logic into a standalone package,...
Hi, thanks for bringing this up. I'm surprised I or someone else didn't hit this earlier. I'll need to have a look at this soon. The low hanging fix would...
## TLDR 1. Add an `id` column to your explicit table 2. Make the `job_id` + `certification_id` combination unique in your prisma schema (but do not mark it as the...
I agree that exposing take/skip enables more flexibility in certain scenarios. Will keep it in mind during work planned for upcoming months.
If I understand correctly, you a referring to cases where prisma itself throws due invalid fields in the query (for example a typo in the column name). The reason the...
Hey, thanks for the submission. Something happened with the formatting and it is hard to review, think you could have a look at it? Before merging this I'll also to...