How is it possible to write/ read to/from database in the AdapterStore?
I have a service with methods for reading from and writing the my database to read the last checkpoints position, but I don't have access to that in the Module setup, static method
is it maybe accessed without the NestJS module infrastructure?
the answer I guess is in here but can't find more information on it
import { MongoStore } from './mongo-eventstore-adapter';
How is it possible to write/ read to/from database in the AdapterStore? I have a service with methods for reading from and writing the my database to read the last checkpoints position, but I don't have access to that in the Module setup,
static
method