2
的陣列部分匹配我有一個表,看起來像這樣:AQL:在字符串
{"_key": "1", "name": "George Washington", "cars": ["Ford Focus"]}
{"_key": "2", "name": "John Adams", "cars": ["Pontiac Firebird", "Toyota Corolla"]}
{"_key": "3", "name": "Thomas Jefferson", "cars": ["Toyota Corolla"]}
{"_key": "4", "name": "James Madison", "cars": ["Ford Mustang", "Porsche 911"]}
現在我想找出誰擁有的所有人員的姓名福特(即,[「喬治·華盛頓」 ,「詹姆斯麥迪遜」])。 當然
FOR doc IN documents
FILTER ("Ford Focus" IN doc.cars OR "Ford Mustang" IN doc.cars)
RETURN doc.name
的作品,但假設我不知道什麼類型的福特存在。我如何搜索數組中的一部分字符串?