Getstream.io 聊天消息搜索语法

Getstream.io chat message search syntax

我正在尝试使用 getstream.io 的聊天产品实现消息搜索。 The docs 有这个例子:

const filters = { members: { $in: ['john'] } };

const search = await client.search(
   filters,
   'supercalifragilisticexpialidocious',
   { limit: 2, offset: 0 },
);

当我执行此操作时,将返回用户 johnsupercalifragilisticexpialidocious 完全匹配的消息,但根据我的应用程序中的测试,我不会收到包含该字符串的 John 的消息,因为示例:supercalifragilisticexpialidocious is a fun thing to say

是否仅针对完全匹配设置了消息搜索?还是有不同的语法?

搜索正常。这个问题没有实际意义。