mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 08:01:20 +08:00
30 lines
561 B
Plaintext
30 lines
561 B
Plaintext
```html
|
|
<!-- MockApolloWrapperClient.svelte -->
|
|
|
|
<script>
|
|
import { ApolloClient, InMemoryCache } from '@apollo/client';
|
|
|
|
import { setClient } from 'svelte-apollo';
|
|
|
|
const mockedClient = new ApolloClient({
|
|
uri: 'https://your-graphql-endpoint',
|
|
cache: new InMemoryCache(),
|
|
defaultOptions: {
|
|
watchQuery: {
|
|
fetchPolicy: 'no-cache',
|
|
errorPolicy: 'all',
|
|
},
|
|
query: {
|
|
fetchPolicy: 'no-cache',
|
|
errorPolicy: 'all',
|
|
},
|
|
},
|
|
});
|
|
setClient(mockedClient);
|
|
</script>
|
|
|
|
<div>
|
|
<slot />
|
|
</div>
|
|
```
|