The implementation we will be working with going forward is called the IdentifiableMongoDbPersistence. It stores and processes data objects that have a unique ID field and implement the IIdentifiable interface defined in the Commons module.


export interface IIdentifiable<K> {
	/** The unique object identifier of type K. */
	id: K;
}