UNPKG

@envelop/parser-cache

Version:

This plugins adds simple LRU caching to your `parse`, to improve performance by caching the parsed result.

15 lines (14 loc) 469 B
import { DocumentNode } from 'graphql'; import type { Plugin } from '@envelop/core'; interface Cache<T> { get(key: string): T | undefined; set(key: string, value: T): void; } export type DocumentCache = Cache<DocumentNode>; export type ErrorCache = Cache<Error>; export type ParserCacheOptions = { documentCache?: DocumentCache; errorCache?: ErrorCache; }; export declare const useParserCache: (pluginOptions?: ParserCacheOptions) => Plugin; export {};