UNPKG

@envelop/persisted-operations

Version:

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

16 lines (15 loc) 331 B
export class AggregatedStore { stores; constructor(stores) { this.stores = stores; } get(operationId) { for (const store of this.stores) { const item = store.get(operationId); if (item) { return item; } } return undefined; } }