@apollo/client
Version:
A fully-featured caching GraphQL client.
18 lines • 424 B
TypeScript
import type { DocumentNode } from "graphql";
export type CacheKey = [
query: DocumentNode,
stringifiedVariables: string,
...queryKey: any[]
];
export type FragmentCacheKey = [
cacheId: string,
fragment: DocumentNode,
stringifiedVariables: string
];
export interface QueryKey {
__queryKey?: string;
}
export interface FragmentKey {
__fragmentKey?: string;
}
//# sourceMappingURL=types.d.ts.map