Related document with limit in child schema

I have two collections joined by a relationship key. My use case is very simple to retrieve some parent and for every parent fetch top 5 documents. Is it possible ?

In other words something like

{
      discussions(limit:2){
        image
        _id (limit:2){
          description
        }
      }
    }