UNPKG

@envelop/persisted-operations

Version:

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

8 lines (7 loc) 311 B
import { DocumentNode } from 'graphql'; import { PersistedOperationsStore } from '../types.js'; export declare class AggregatedStore implements PersistedOperationsStore { private stores; constructor(stores: PersistedOperationsStore[]); get(operationId: string): string | DocumentNode | undefined; }