使用typeorm的文档MongoDB中的分页数组

时间:2018-10-08 07:23:36

标签: typeorm

我必须使用限制和偏移量对文档中的数组进行分页。 例如,在本文档中,我必须对Messages数组进行分页,而不是对所有会话文档进行分页。

示例:

Conversations: {
id:'lknelkznzlke',
Messages:[
  {
    id:'message1',
    content:'hello',
    nameFRiend:'paul',
    date:'21/12/2018'
  },
  {
    id:'message2',
    content:'hello',
    nameFRiend:'paul',
    date:'19/12/2018'
  },
  {
    id:'message3',
    content:'hello',
    nameFRiend:'paul',
    date:'20/12/2018'
  }
]
}

0 个答案:

没有答案