UNPKG

apollo-angular

Version:

Use your GraphQL data in your Angular app, with the Apollo Client

5 lines (4 loc) 276 B
import { ApolloLink } from '@apollo/client/link'; import { PersistedQueryLink } from '@apollo/client/link/persisted-queries'; export type Options = PersistedQueryLink.Options; export declare const createPersistedQueryLink: (options: PersistedQueryLink.Options) => ApolloLink;