find( )


Returns the query results.

The find() function returns a Promise that resolves to the query results and metadata. The Promise is rejected if find() is called with insufficient permissions or if any of the previous functions used to refine the query are invalid.

Method Declaration
Copy
function find(): Promise<ProductsQueryResult>;
Request
This method does not take any parameters
Returns
Return Type:Promise<ProductsQueryResult>
JavaScript
const query = products.queryProducts().find();
Errors

This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.

Did this help?

ge( )


Refines a query to match items where the specified property is greater than or equal to the specified value.

The ge() function refines a ProductsQueryBuilder to match only items where the value of the specified propertyName is greater than or equal to the specified value. ge() matches only values of the same type. For example, 0 stored as a number doesn't match '0' stored as a string. If a property contains a number stored as a string (for example, '0'), that value is compared alphabetically and not numerically. If a property doesn't have a value, that value is ranked lowest. The following types of properties can be compared:

  • Number: Compares numerically.
  • Date: Compares JavaScript Date objects.
  • String: Compares lexicographically, so 'abc' is greater than 'ABC'.
Method Declaration
Copy
function ge(propertyName: string, value: any): ProductsQueryBuilder;
Method Parameters
propertyNamestring

Property whose value is compared with value.


valueany

Value to compare against.

Returns
JavaScript
const query = products.queryProducts().ge("_createdDate", "2021-03-01");
Errors

This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.

Did this help?

gt( )


Refines a query to match items where the specified property is greater than the specified value.

The gt() function refines a ProductsQueryBuilder to match only items where the value of the specified propertyName is greater than the specified value. gt() matches only values of the same type. For example, 0 stored as a number doesn't match '0' stored as a string. If a property contains a number stored as a string (for example, '0'), that value is compared alphabetically and not numerically. If a property doesn't have a value, that value is ranked lowest. The following types of properties can be compared:

  • Number: Compares numerically.
  • Date: Compares JavaScript Date objects.
  • String: Compares lexicographically, so 'abc' is greater than 'ABC'.
Method Declaration
Copy
function gt(propertyName: string, value: any): ProductsQueryBuilder;
Method Parameters
propertyNamestring

Property whose value is compared with value.


valueany

Value to compare against.

Returns
JavaScript
const query = products.queryProducts().gt("_createdDate", "2021-03-01");
Errors

This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.

Did this help?

hasAll( )


Refines a query to match items whose specified property contains all of the specified values.

The hasAll() function refines a ProductsQueryBuilder to match only items where the value of the specified propertyName equals all of the specified values. Matching strings with hasAll() is case-sensitive, so 'text' isn't equal to 'Text'. If the specified property is an array, hasAll() matches if that array's elements match all of the specified values.

Method Declaration
Copy
function hasAll(propertyName: string, value: Array<any>): ProductsQueryBuilder;
Method Parameters
propertyNamestring

Property whose value is compared with values.


valueArray<any>
Returns
JavaScript
const query = products .queryProducts() .hasAll("labelIds", ["red", "blue", "purple"]);
Errors

This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.

Did this help?