@envelop/persisted-operations
Version:
This plugin allow you to enforce execution of persisted (hashed) operation, using a custom store.
10 lines (9 loc) • 419 B
TypeScript
import { DocumentNode } from 'graphql';
import { PersistedOperationsStore } from '../types.js';
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>;
}