Yan Takushevich

Results 38 comments of Yan Takushevich

We are using Prisma and Nexus for our app's admin API. All requests are secured by authentication, so `t.prismaFields([*])` isn't a security issue. Now this method is deprecated and we...

@darrylyoung just exposing existing crud operation like in your example in our case is thousands of lines of code, because we have a huge schema. `create-nexus-types` could be an option,...

I'm having the following issue with using nexus with yarn workspaces. Nexus is used in `@learn/server` package. Here's the tsconfig: ``` { "compilerOptions": { "target": "es2016", "module": "commonjs", "lib": ["esnext"],...

Update. This happens only with nexus `v0.21.0+`, works fine with `v0.20.0`.

There's an open issue regarding this topic in the old repo: https://github.com/christianalfoni/formsy-react/issues/261

@mchurichi I see a long time passed since you opened this issue. Any luck with this? I like `formsy-react` and wouldn't like to migrate to another solution just because of...

In my case content is fetched from API, so when the app loads, content is not there yet and the page remains at the top. Any ideas on how to...

@edy Here is my store: ```javascript { route: { locationBeforeTransitions: null }, language: { locale: 'en' }, home: { introductionVisible: false } } ``` The following code works fine: ```javascript...

Hm, this snippet: ```javascript const persistReducer = createFilter( null, ['home.introductionVisible'] ); ``` Doesn't seem to work either. It persists the whole `home` reducer, not just `home.introductionvisible` as expected. May this...

@steida what do you mean by "this is it"? I can't see any rules in `eslint-plugin-flowtype` to enforce 100% flow coverage.