Joseph Cheung
Joseph Cheung
Hi, Related to graphql/graphql-js#1169, I'm using `graphql` 0.13.1 and I have a type which implements multiple interfaces: ``` type Photo implements File & Node { id: ID! url: URL! height:...
Hi, Related to #83, I'd like to share how I write Stealth's integration test. Source code can be found here https://github.com/josephktcheung/stealth-integration-test. @luizcarvalho @mgomes please take a look and see if...
I'd like to know how can I send proactive message to a specific user. Use case: A dating chatbot connects 2 users to chat with each other. When user A...
Similar to https://github.com/travisjeffery/timecop/pull/121 but this one has all tests passed
This is to fix #38. Since there are no `CurrentRequest`, `CurrentResponse` and `dataLoaders` in the context / container when it's subscription, the resolver will fail when it tries to access...
Subscription fails if a field is resolved by a resolver. ## Reproduction Steps demo code available at https://github.com/josephktcheung/vesper/tree/feature/resolver_subscription, run sample 11 with `npx ts-node sample/typescript/sample11-subscribers/index.ts` 1. Add a new `test`...
In https://www.apollographql.com/docs/graphql-subscriptions/authentication.html, apollo suggests to use `onConnect` param to pass context specific data e.g. authenticating user over websocket. However, currently Vesper doesn't have a way to do that as the...
I'm using `apollo-link-batch-http` to batch our graphql request but Vesper fails to run batched mutations. Reproduction commit: https://github.com/josephktcheung/typescript-advanced-example/tree/a773ce11bc45890720b24fe432403dbee6463e7c Steps: 1. Reuse the `typescript-advanced-example` and upgraded `vesper` to latest 2. Here's...
Hi, I ran the example app in XCode 14 beta and get the below warning in console: ``` 2022-06-13 11:52:11.725672+0800 FlowStacksApp[77257:2136526] [SwiftUI] NavigationLink presenting a value must appear inside a...
Hi, We tried using TCACoordinators in our iOS and macOS app. Since macOS doesn't support `StackNavigationViewStyle`, I wonder if the library can be extensible so that it can wrap a...