The FulltextNode is used when executing full text searches on the database.
Here is an example of the <SearchNode> constructed using a FulltextNode:
<SearchNode
xsi:type="FulltextNode"
IsChangingSort="false">
<List xsi:type="SearchCondition" Path="[folderObject.name]"
Op="ExaleadAll" IsFulltext="true">
<From xsi:type="VariableSearchNode" Name="param" Type="String"/>
</List>
</SearchNode>
Attribute values found in the SearchNode:
xsi:type |
The type of node to construct: FulltextNode |
IsChangingSort |
Always 'false' |
NOTE: Full text searches can only be performed on those fields which are indexed. See the documentation on configuring full text searches.
In this chapter