arangosh> db.emails.ensureFulltextIndex("content"); { "id" : "emails/1068882375", "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/1069210055", "_rev" : "1069210055", "_key" : "1069210055" } arangosh> db.emails.save({ content: "Hello Charlie, do Alice and Bob know about it?" }); { "_id" : "emails/1069406663", "_rev" : "1069406663", "_key" : "1069406663" } arangosh> db.emails.save({ content: "I think they don't know. Regards, Eve" }); { "_id" : "emails/1069603271", "_rev" : "1069603271", "_key" : "1069603271" } arangosh> db.emails.fulltext("content", "charlie,|eve").toArray(); [ { "_id" : "emails/1069406663", "_key" : "1069406663", "_rev" : "1069406663", "content" : "Hello Charlie, do Alice and Bob know about it?" }, { "_id" : "emails/1069603271", "_key" : "1069603271", "_rev" : "1069603271", "content" : "I think they don't know. Regards, Eve" } ]