1
0
Fork 0

removed duplicate documentation block

This commit is contained in:
Jan Steemann 2015-05-22 14:16:48 +02:00
parent bc76cf5079
commit 6a35c7e514
1 changed files with 0 additions and 36 deletions

View File

@ -753,42 +753,6 @@ ArangoCollection.prototype.withinRectangle = function (lat1, lon1, lat2, lon2) {
return new SimpleQueryWithinRectangle(this, lat1, lon1, lat2, lon2);
};
////////////////////////////////////////////////////////////////////////////////
/// @brief constructs a fulltext query for a collection
/// @startDocuBlock collectionFulltext
/// `collection.fulltext(attribute, query)`
///
/// This will find the documents from the collection's fulltext index that match the search
/// query.
///
/// In order to use the *fulltext* operator, a fulltext index must be defined for the
/// collection, for the specified attribute. If multiple fulltext indexes are defined
/// for the collection and attribute, the most capable one will be selected.
///
/// @EXAMPLES
///
/// To find all documents which contain the terms *text* and *word*:
///
/// ```
/// arango> db.emails.fulltext("text", "word").toArray();
/// [
/// {
/// "_id" : "emails/1721603",
/// "_key" : "1721603",
/// "_rev" : "1721603",
/// "text" : "this document contains a word"
/// },
/// {
/// "_id" : "emails/1783231",
/// "_key" : "1783231",
/// "_rev" : "1783231",
/// "text" : "this document also contains a word"
/// }
/// ]
/// ```
/// @endDocuBlock
////////////////////////////////////////////////////////////////////////////////
ArangoCollection.prototype.fulltext = function (attribute, query, iid) {
return new SimpleQueryFulltext(this, attribute, query, iid);
};