@envelop/persisted-operations
Version:
This plugin allow you to enforce execution of persisted (hashed) operation, using a custom store.
20 lines (19 loc) • 537 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.InMemoryStore = void 0;
class InMemoryStore {
storeData;
constructor(options) {
this.storeData = options?.initialData ?? new Map();
}
get(operationId) {
return this.storeData.get(operationId) || undefined;
}
prime(operationId, document) {
this.storeData.set(operationId, document);
}
clear(operationId) {
this.storeData.delete(operationId);
}
}
exports.InMemoryStore = InMemoryStore;
;