apollo-angular
Version:
Use your GraphQL data in your Angular app, with the Apollo Client
9 lines (6 loc) • 326 B
TypeScript
import { ApolloLink } from '@apollo/client/link';
import { PersistedQueryLink } from '@apollo/client/link/persisted-queries';
type Options = PersistedQueryLink.Options;
declare const createPersistedQueryLink: (options: PersistedQueryLink.Options) => ApolloLink;
export { createPersistedQueryLink };
export type { Options };