Joseph Cheung
Joseph Cheung
After further investigation, the problem is more serious than I thought. Here's the latest reproduction commit: https://github.com/josephktcheung/typescript-advanced-example/tree/817468b030572e8447fccace3da5480510dc8ef1 Here's my new `index.ts`: ```ts import { bootstrap } from "vesper"; import {...
This means if the client sends multiple mutation requests to the server at the same time the server cannot handle them at all, not even a single one, no matter...
So this is because by default `transaction` is `true` for mutation. Once I set `transaction` to false e.g. `@Mutation({ transaction: false })` then it works
This makes me wonder if `transaction` should not be `true` by default, because setting this to `true` implies that mutation cannot be run simultaneously, which we don't need it in...
I want to know how to query interface result as well. for example we have: ```gql interface Test { id: ID! var: String! } type First implements Test { id:...
Yeah @vfaramond, that's what I did in our projects too. Resolving interfaces is easy, but querying multiple entities which implements the interface at the same time can be tricky. I...
Also fix #40 by adding `connectionParams` to `context` so that user can use `setUpContainer` callback to implement authentication (similar to [sample 10](https://github.com/vesper-framework/vesper/blob/master/sample/typescript/sample10-current-user/index.ts#L24-L31))
Hi @johnpatrickmorgan, thanks for replying. We tried Mac Catalyst first but hit various limitations such that we are exploring to build a native MacOS app using SwiftUI e.g. TextKit 2...
`NavigationView` is deprecated https://developer.apple.com/documentation/swiftui/navigationview I wonder how FlowStacks would work using `NavigationStack` and `NavigationSplitView`
> Thanks for raising this issue @josephktcheung. > > I think that the `NavigationLink presenting a value...` warning must be spurious, as there are no NavigationLinks that present values in...