Denis Kiselev

Results 27 comments of Denis Kiselev

Good dataset could be description of Realword project of some sort: articles, comments, etc.

@abelosorio : Sure. All proper features like enveloping whole bulk into transaction and so on - are welcome!

**@ all**: for me at this point its not clear if enabling foreign keys back will enforce foreign key recheck for all bulk-loaded data? This is true for all databases?...

@hank-cp : Not sure what schema changes do you mean. My proposal was to temporaly disable foreign keys before seed procedure. After bulk loading data, enable all foreign keys again....

Confirming: Sideloaded 1.0.0 via Sideloadly on my iOS 17.4 crashes.

New project targeted same problem: https://github.com/pojala/electrino Blog post: https://medium.com/dailyjs/put-your-electron-app-on-a-diet-with-electrino-c7ffdf1d6297

@pokamest : any news for windows 7 support? Latest released (4.6+) did not install/work on win7, old release 2.1.2 did not work with modern configs. here is patched QT6 working...

I m not sure how i can implement validation for .patch (update) controller: For ex, i can have some object with fields (name:type): - id: uuid - parent_id: uuid -...

One more point to discuss of current API for optional params. For ex i have 2 optional fields, and define .patch(update) validator as this: ``` OneOf([ body('name').isLength({min:1}), body('parent_id').exists() ]) ```...

Tnx for reply! No, (sample from actual code) this validator: ``` [ body('name').optional().isLength({ min: 1 }).withMessage('Name should not be empty'), body('parent_id').optional().isNumeric(), ] ``` did pass ```{ name: '' }``` to...