UNPKG

@envelop/persisted-operations

Version:

This plugin allow you to enforce execution of persisted (hashed) operation, using a custom store.

10 lines (9 loc) 420 B
import { DocumentNode } from 'graphql'; import { PersistedOperationsStore } from '../types.cjs'; export type JsonFileStoreDataMap = Map<string, DocumentNode | string>; export declare class JsonFileStore implements PersistedOperationsStore { private storeData; get(operationId: string): string | DocumentNode | undefined; loadFromFileSync(path: string): void; loadFromFile(path: string): Promise<void>; }