UNPKG

@envelop/persisted-operations

Version:

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

13 lines (12 loc) 520 B
import { DocumentNode } from 'graphql'; import { PersistedOperationsStore } from '../types.cjs'; export type InMemoryStoreDataMap = Map<string, DocumentNode | string>; export declare class InMemoryStore implements PersistedOperationsStore { private storeData; constructor(options?: { initialData?: InMemoryStoreDataMap; }); get(operationId: string): string | DocumentNode | undefined; prime(operationId: string, document: string | DocumentNode): void; clear(operationId: string): void; }