Flavian Desverne

Results 104 comments of Flavian Desverne

All derived fields such as `fullName` or anything else will have to be "manually written". It also adds complexity

Hey everyone 👋, The main reason why we haven't been active during the past weeks on Yoga2 is because we've been working on the entity topic. It's now living in...

Hey @maticzav 👋, I like your proposal, does the `tree` below properly sums up the tree structure you're describing? ``` . ├── graphql │ ├── context.ts // (optional) │ ├──...

Hey folks 👋, I just made a test with `nexus@next` + `nexus-plugin-prisma@next` in a yarn workspace setup and everything seemed to be working **when keeping the prisma stuff (migrations +...

Hey there, have you tried exporting your types?

I'm not sure whether we need any kind of integration to support upload here. https://github.com/jaydenseric/graphql-upload seems to do the job on its own, and should not require you to eject...

@rohit-ravikoti You don't event need to use `scalarType` here, nexus supports `graphql-js` types out of the box. ```ts import { GraphQLUpload } from 'graphql-upload' export const Upload = GraphQLUpload ```...

Hey folks, would you mind trying to install `nexus-plugin-prisma@next`? I believe this is fixed but wasn't released on stable yet

Spent some time today investigating that. I removed the fatal inside `createTestContext` and instead thrown the error. However, that doesn't fix everything. ![image](https://user-images.githubusercontent.com/25233379/88673817-575ea800-d0e9-11ea-90fe-1ce2f2399e8e.png) I'm not sure exactly yet what causes...

Yeah yeah this works, as mentioned it only happens when sharing the ctx reference between the `afterAll` and `beforeAll`. You can even use the `beforeAll` and `afterAll` lifecycle together but...