mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 01:11:06 +08:00
39 lines
898 B
Plaintext
39 lines
898 B
Plaintext
```ts
|
|
// mock-graphql.module.ts
|
|
|
|
import { NgModule } from '@angular/core';
|
|
import { APOLLO_OPTIONS } from 'apollo-angular';
|
|
import { ApolloClientOptions, InMemoryCache } from '@apollo/client/core';
|
|
import { HttpLink } from 'apollo-angular/http';
|
|
|
|
// See here for docs https://apollo-angular.com/docs/get-started
|
|
|
|
const uri = 'https://your-graphql-endpoint';
|
|
export function createApollo(httpLink: HttpLink): ApolloClientOptions<any> {
|
|
return {
|
|
link: httpLink.create({ uri }),
|
|
cache: new InMemoryCache(),
|
|
defaultOptions: {
|
|
watchQuery: {
|
|
fetchPolicy: 'no-cache',
|
|
errorPolicy: 'all',
|
|
},
|
|
query: {
|
|
fetchPolicy: 'no-cache',
|
|
errorPolicy: 'all',
|
|
},
|
|
},
|
|
};
|
|
}
|
|
|
|
@NgModule({
|
|
providers: [
|
|
{
|
|
provide: APOLLO_OPTIONS,
|
|
useFactory: createApollo,
|
|
deps: [HttpLink],
|
|
},
|
|
],
|
|
})
|
|
export class MockGraphQLModule {}
|
|
``` |