The data field of events is currently Binary. This is slightly annoying when viewing at the data within MongoDB Compass: BinData(0, "ey...."). Need to change the field type to String to be able to view the data.
I want to change the field type to Object, so the event data can be viewed and navigated in Compass.
Should be able to implement this backwards-compatible, so no migration of the event store is needed.
The
data
field of events is currentlyBinary
. This is slightly annoying when viewing at the data within MongoDB Compass:BinData(0, "ey....")
. Need to change the field type toString
to be able to view the data.I want to change the field type to
Object
, so the event data can be viewed and navigated in Compass.Should be able to implement this backwards-compatible, so no migration of the event store is needed.