Will Stamper
Will Stamper
Simple fix to change "compressiong" to "compression". Also changed one output to use the variable report instead of r, allowing it to finish the report without throwing an error.
### 🔎 Search Terms literal type narrowing ### 🕗 Version & Regression Information Per @jakebailey [here](https://github.com/microsoft/TypeScript/issues/52345#issuecomment-1741937246): > I checked and the change that 10x'd this in 4.8 was https://github.com/microsoft/TypeScript/pull/49625, and...
### Issue Description If you have some code running outside of an apollo context like this: ``` useSuspenseQuery(myQuery, { skip: true, client: myClientInstance }); ``` that seems to work mostly...
### Issue Description I'm pretty sure this is a bug with `skip: true`, or at least `skipToken` behaves like I'd expect. If you have a `useSuspenseQuery` that uses `skip: boolean`...
Hey all! Awesome library :) I noticed what appears to be a bug. If you run the following snippet: ```js import { PropertiesEditor } from "properties-file/editor"; import { getProperties }...
Right now if you define a typepolicy for a Thing like so: ``` Thing: { merge(incoming, existing) => {} } ``` and Thing is normalized, incoming and existing are often...
Per [the docs](https://www.apollographql.com/docs/react/caching/cache-configuration) right now: ``` AllProducts: { // Singleton types that have no identifying field can use an empty // array for their keyFields. keyFields: [], }, Store: {...
In the previous major version of apollo-client, you could import buildDelayFunction from https://github.com/apollographql/apollo-client/blob/main/src/link/retry/delayFunction.ts. That was handy if you wanted to sometimes override the default behavior but then fall back to...