Mirror: The highly customizable and versatile GraphQL client with which you add on features like normalized caching as you grow.
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

(svelte) - add missing `pause` on the `operationStore` (#1925)

* add missing `pause` on the `operationStore`

* Create cool-zoos-whisper.md

authored by

Jovi De Croock and committed by
GitHub
b90b6d5e 9cf9de8b

+6 -1
+5
.changeset/cool-zoos-whisper.md
··· 1 + --- 2 + "@urql/svelte": patch 3 + --- 4 + 5 + Add missing `pause` on the `operationStore` return value
+1 -1
packages/svelte-urql/src/operationStore.ts
··· 21 21 // Input properties 22 22 query: DocumentNode | TypedDocumentNode<Data, Vars> | string; 23 23 variables: Vars | null; 24 - context: Partial<OperationContext> | undefined; 24 + context: Partial<OperationContext & { pause: boolean }> | undefined; 25 25 // Output properties 26 26 readonly stale: boolean; 27 27 readonly fetching: boolean;