Beep LIN

Results 19 comments of Beep LIN

badly need this feature. currently I have to `cat a.prisma b.prisma > schema.prisma`. it works but is so clumsy.

100% agree with the proposals, especially for the new query syntax.

Yes, and tools like `octotree` just guide users to create and input the access token.

Maybe this is because `yoga2` now uses `ts-node` instead of `ts-node-dev`. Currently `yoga dev` only auto restart after each `yarn prisma deploy`, but I guess most developers expect it to...

@DevanB Yes, `yoga dev` uses `ts-node`'s `register` to compile .ts files programmatically, which is probably not available in `ts-node-dev`. A more feasible way, I guess, might be use `nodemon` or...

@Weakky I tested v0.0.20 on Windows, but unfortunately the hot reload is still not working: 1. yarn create yoga (select 'from scratch' & 'mini') 2. yarn add express (the generated...

+1 @jferrettiboke just stopped using yoga2 in my project due to this issue.

@do4gr More throughts about this: In the example above, even if we are querying `bs` with not `a.id` but `a.name`, it could still be done faster by using `find` rather...

@do4gr yes I agree that optimization for the second case `bs(where: { a: { name: "xxx" } }` is not urgent. While the firset case `bs(where: { a: { id:...