If i have a collection in mongodb with employee personal information like name, id, address...
and a second collection with the employee job information like name, id, shift, job title...
how would i get the employee shift and address to display to an html/ejs page. would that be done in the express routes or in the module.js file? can i somehow merge the two collections on the id number that is the same like you can in sql with join statements?
when you create the schema can you pull data from another schema?