Dan Caddigan

Results 65 comments of Dan Caddigan

@19majkel94 - thanks again for all of your detailed and thoughtful write-ups. It gives me a lot of confidence using your library. Your idea gets things one step closer to...

FYI, for anybody following the 2nd half of this thread looking for something like I've outlined above, I implemented it in a new library [Warthog](https://github.com/goldcaddy77/warthog) that composes TypeGraphQL and TypeOrm,...

Would this also hook into the pipeline to allow dynamic creation of additional schema? For instance, I'd like to generate Inputs dynamically from the model attributes.

I think it would be a nice addition. Anybody else?

No worries - thanks for your work on the project 👍

Shameless plug: my library [warthog](http://warthog.dev/) is similar to Vesper and I plan on supporting it for the long term. It is more opinionated than Vesper though: - Uses TypeORM -...

IMO there should still be a readme here. Perhaps it should just state how to install on bower, though: ``` bower install angular-bootstrap ``` Edit: and perhaps some reasoning on...

Good idea. This should be pretty straightforward given I already have a pattern for `createMany`: https://github.com/goldcaddy77/warthog/blob/master/src/core/BaseService.ts#L151 If you want to take a crack at this, feel free. You should really...

A few follow-ups... some assumptions: - For `updateMany`: this would run all validations and hooks (@BeforeUpdate, @AfterUpdate) for each item. Otherwise you could end up with invalid records. - For...

@FOSSforlife - per TypeORM's docs: > Updates entity partially. Entity can be found by a given conditions. Unlike save method executes a primitive operation without cascades, relations and other operations...