Refines a query to match items where the specified property is less than the specified value.
The le()
function refines a ProductsQueryBuilder
to match only items where the value of the specified propertyName
is less than the specified value
.
le()
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:
'ABC'
is less than 'abc'
.function lt(propertyName: string, value: any): ProductsQueryBuilder;
Property whose value is compared with value
.
Value to compare against.
const query = products.queryProducts().lt("_createdDate", "2021-03-01");
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.
Refines a query to match items where the specified property doesn't equal the specified value.
The ne()
function refines a ProductsQueryBuilder
to match only items where the value of the specified propertyName
doesn't equal the specified value
.
ne()
matches only values of the same type. For example, 0
stored as a number doesn't match '0'
stored as a string.
Matching strings with ne()
is case-sensitive, so 'text'
isn't equal to 'Text'
.
function ne(propertyName: string, value: any): ProductsQueryBuilder;
Property whose value is compared with value
.
Value to compare against.
const query = products
.queryProducts()
.ne("_id", "bb19b637-74ce-55d3-ae32-430b588051da");
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.
Sets the number of items to skip before returning query results.
The skip()
function defines the number of results to skip before returning new query results.
For example, if you query a collection and 50 items match your query, but you set skip()
to 10
, the first 10 items that match are ignored, and the 11th through 50th items are returned.
function skip(skip: number): ProductsQueryBuilder;
Number of items to skip in the query results before returning the results.
const query = products.queryProducts().skip(10);
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.