「test」キーに「hello」文字列を含まないすべてのドキュメントを返したいです。そこで、「hello」q を含むドキュメントをフィルタリングしない次のクエリを作成しました: -test:("hello")
[{
"test":["hello", "second"],
id:123
},
{
"test":["hello1", "second1"],
id:1234
}
]
期待される結果:
[
"test":["hello1", "second1"],
id:1234
}
]