I'm new in Mean Stack workflow and my background relays on MySql schemas.
I'm creating a little application to improve my skills on it, and I've encountered a logic question.
I've created two Schemas: a User schema and a Ticket schema. Now I've to save extra info in the relation between the two Schemas: in MySql, I used junction tables (user_tickets in Laravel case) where I could store, for example, when a user opens a ticket, or if a user hides a ticket and so on...
In Mongoose and in Mean Stack world I can't find a solution. Now I've created a third model UserTickets but it's problematic and expensive to maintain the third model.
Am I wrong? Is there another simpler method?