我有一个名为“ textCol”的集合,并且在其中有以下文档:
[{"_id": ..., "n": 1, "text": "abc"},
{"_id": ..., "n": 2, "text": "def"},
{"_id": ..., "n": 3, "text": "ghi"}]
现在,我如何查找类似“ bcde”的字符串作为结果获得前两个文档(那些带有“ text:abc”和“ text:def”的文档)? 因此,看起来像“ bcde”的东西我想获得以下结果:
[{"_id": ..., "n": 1, "text": "abc"},
{"_id": ..., "n": 2, "text": "def"}]
预先感谢您的帮助。