I'm trying to use mongoose to represent an association between 3 schemas:
Schema1: {
    //fields
}
Schema2: {
    //fields    
}
Scehma3: {
   //fields
   - [Scehma1:Scehma2] - collection of key-val elements
     where the key is a ref to schema1 and val is ref to scehma2
}
Does mongoose support this king of association without creating a schema4?
 
    