@envelop/persisted-operations
Version:
This plugin allow you to enforce execution of persisted (hashed) operation, using a custom store.
16 lines (15 loc) • 396 B
JavaScript
export 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);
}
}