arangosh> db.emails.ensureFulltextIndex("content"); { "id" : "emails/1096358610", "type" : "fulltext", "fields" : [ "content" ], "unique" : false, "sparse" : true, "minLength" : 2, "isNewlyCreated" : true, "code" : 201 } arangosh> db.emails.save({ content: ........> "Hello Alice, how are you doing? Regards, Bob"}); { "_id" : "emails/1096686290", "_rev" : "1096686290", "_key" : "1096686290" } arangosh> db.emails.save({ content: ........> "Hello Charlie, do Alice and Bob know about it?"}); { "_id" : "emails/1096882898", "_rev" : "1096882898", "_key" : "1096882898" } arangosh> db.emails.save({ content: "I think they don't know. Regards, Eve" }); { "_id" : "emails/1097079506", "_rev" : "1097079506", "_key" : "1097079506" } arangosh> db.emails.fulltext("content", "charlie,|eve").toArray(); [ { "_id" : "emails/1096882898", "_key" : "1096882898", "_rev" : "1096882898", "content" : "Hello Charlie, do Alice and Bob know about it?" }, { "_id" : "emails/1097079506", "_key" : "1097079506", "_rev" : "1097079506", "content" : "I think they don't know. Regards, Eve" } ]