I have document like:
user: {
  _id: 5d8fa9881c9d4400006d13ab,
  connections[5e1ba6f12fc39330a3ebd1b0,...]
 }
and many another like:
connection: {
   authors: [5d8fa9881c9d4400006d13ab, 5d8fa9881c9d4400123213as] 
  _id: 5e1ba6f12fc39330a3ebd1b0
}
So each new connection Schema is pushed in User connections array. I want to aggregate user.connections to show all informations from each connection in that array
