Hi I have a few columns in my tables that contain hexadecimal Id values it gets from mongo, I want it so that instead of displaying the hexadecimal string it displays the name of that person/category after using that same Id value to search in mongo and find the corresponding email associated with that Id.
To be more clear
I have a column called
Topic which we get from the mongo collection Ball
Now this column is populated by a hexadecimal Id, I want it to display instead of the Id the name of Topic by using the id to search in a different collection called Topics to reference the id with a name. How is this possible