Skip to main content

FTSFLAGS

Combination of full-text search flag bitfields.

NameDescriptionType
allSpecifies all flags set; Including any future flags.boolean
use_stemmingEnable stemming for all words in the search request.boolean
search_all_wordsFinds all of the words in the search request.boolean
search_any_wordsFinds any of the words in the search request.boolean
search_metadataLook matches in the meta data (properties) of documents.boolean
search_filedataLook matches in the file data of documents.boolean

Example

{
"all": false,
"use_stemming": false,
"search_all_words": false,
"search_any_words": false,
"search_metadata": false,
"search_filedata": false
}