fuzzy( )


Sets whether to search for exact matches or approximate matches of the search phrase.

If fuzzy is false, the search only returns documents containing an exact match of the search phrase. For example, a search for "applf" or "app" will not return documents containing the phrase "apple".

If fuzzy is true, the search returns documents containing exact matches and approximate matches of the search phrase. For example, a search for "applf" or "app" will return documents containing the phrase "apple".

Note: The default for fuzzy is true.

Method Declaration
Copy
function fuzzy(fuzzy: boolean): WixSearchBuilder;
Method Parameters
fuzzybooleanRequired

Whether the search is fuzzy or not.

Returns
Return Type:WixSearchBuilder
JavaScript
let newSearch = search.fuzzy(false);
Did this help?

ge( )


Refines a search to match documents whose specified field value is greater than or equal to the specified value.

The ge() filter function refines a WixSearchBuilder to only match documents where the value of the specified field is greater than or equal to the specified value.

ge() only matches values of the same type. For example, a number value stored as a String type does not match the same number stored as a Number type.

If a field contains a number as a String, that value will be compared alphabetically and not numerically. Documents that do not have a value for the specified field are ranked lowest.

The following types of fields can be compared:

  • Number: Compares numerically.
  • Date: Compares JavaScript Date objects.
  • String: Compares lexicographically, so "text" is greater than or equal to "Text" (because of the 'greater than').

If other filters were previously used in the same WixSearchBuilder instance, ge() is applied using an and condition with previously set filters.

Method Declaration
Copy
function ge(field: string, value: union): WixSearchBuilder;
Method Parameters
fieldstringRequired

The field whose value will be compared with value.


valueunionRequired

The value to match against.

Returns
Return Type:WixSearchBuilder
JavaScript
let newSearch = search.documentType("Forum/Content").ge("likeCount", 10);
Did this help?

gt( )


Refines a search to match documents whose specified field value is greater than the specified value.

The gt() function refines a WixSearchBuilder to only match documents where the value of the specified field is greater than the specified value.

gt() only matches values of the same type. For example, a number value stored as a String type does not match the same number stored as a Number type.

If a field contains a number as a String, that value will be compared alphabetically and not numerically. Documents that do not have a value for the specified field are ranked lowest.

The following types of properties can be compared:

  • Number: Compares numerically.
  • Date: Compares JavaScript Date objects.
  • String: Compares lexicographically, so "text" is greater than "Text".

If other filters were previously used in the same WixSearchBuilder instance, gt() is applied using an and condition with previously set filters.

Method Declaration
Copy
function gt(field: string, value: union): WixSearchBuilder;
Method Parameters
fieldstringRequired

The field whose value will be compared with value.


valueunionRequired

The value to match against.

Returns
Return Type:WixSearchBuilder
JavaScript
let newSearch = search.documentType("Forum/Content").gt("likeCount", 10);
Did this help?