@envelop/persisted-operations
Version:
This plugin allow you to enforce execution of persisted (hashed) operation, using a custom store.
8 lines (7 loc) • 312 B
text/typescript
import { DocumentNode } from 'graphql';
import { PersistedOperationsStore } from '../types.cjs';
export declare class AggregatedStore implements PersistedOperationsStore {
private stores;
constructor(stores: PersistedOperationsStore[]);
get(operationId: string): string | DocumentNode | undefined;
}