Daniel Friesen

Results 336 comments of Daniel Friesen

> When you soft-delete a **User** node with the **username** `john55`. This node is still in the the underlying table. Then, when you want to create a new **User** with...

If this were supported, Prisma could potentially be the best react-native app data storage API I've seen.

Does es6 `extends` copy static getters as-is? If so, couldn't the `SomeModel.NotFoundError` be handled by making `NotFoundError` a memoized getter that creates the subclass of NotFoundError from `this`.

> If you think this issue needs to be re-evaluated please post a comment on why this is still important and we will re-open it. The importance of this issue...

This is a severe problem for some users of inquirer like [npm-check](https://github.com/dylang/npm-check). When multiple separators are used this bug can stack resulting in the cursor completely leaving the visible area....

This bug is probably related to this line: > https://github.com/SBoudrias/Inquirer.js/blob/master/lib/prompts/list.js#L97 > > ``` js > message += "\n" + this.paginator.paginate(choicesStr, this.selected); > ``` The lines of choicesStr includes the separators....

Same problem. As soon as I tricked smart-knobs into supporting my component it ruined my docs page. I'd be happy at least with it being disable for docs page examples...

As a related topic. I can appreciate that sometimes types will be too complex for smart-knobs to do automatically. It would be really appreciated if there was an escape hatch...

Ok, apparently `react-docgen-typescript-loader` has a `shouldExtractLiteralValuesFromEnum` option built-in to support smart-knobs. https://github.com/strothj/react-docgen-typescript-loader/issues/87#issuecomment-583818469 Perhaps smart-knobs should mention that option where it recommends use of `react-docgen-typescript-loader`.

+1 Sometimes you don't want to CSRF token (maybe you're doing an API with its own tokens or OAuth) and the generic error also makes it hard to display custom...