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