Charly Poly
Charly Poly
> Currently using the client preset and am unable to get `skipDocumentsValidation` to work, although it works as expected with the same configuration for the `fragment-matcher` plugin: > > ```...
I had the same kind of issue with : ```ts export const SearchResults = connectStateResults(connectHits(SearchResultsComponent)); ``` The workaround was to do : ```ts export const SearchResults = connectHits(connectStateResults(SearchResultsComponent)); ``` 💯
The current complete rewrite of the lib is still ongoing but on pause, cf https://github.com/charlypoly/spotify-graphql/issues/79
You are right @pangolingo; your approach would definitely be a good workaround while we make progress on another approach that would conserve our current DX (for example: `@defer/client` good behave...
> `highlight color is missing opacity` I removed it's explicitly due installation of 1 package to change opacity in 1 place @B2o5T yes but it was crucial UX wise because...
> maybe instead of setting background as `accentColor` we should change text color of `accentColor` + fontWeight: bold? I guess just text-color would do the job yes!
Hi @joaomdmoura 👋🏼 What do you think of this Flight Booker example built with Browserbase?
@mikaelkaron The maintained version lives here: https://github.com/Codex-/cosmiconfig-typescript-loader/
@Axedyson, the issue seems to come from the inference that `cache.updateQuery()` is doing based on the query definition and the data that you pass from `result`. have you tried to...
I guess the following would work: ```tsx loginUser: (result, _args, cache) => { cache.updateQuery( { query: MeDocument }, () => ({ me: result.loginUser, }) ); } ``` but it's not...