limit( )


Limits the number of items the query returns.

The limit() function defines the number of results a query returns in each page. Only one page of results is retrieved at a time. You can use the next() and prev() functions to navigate the pages of a query result.

Method Declaration
Copy
function limit(limit: number): EventsQueryBuilder;
Method Parameters
limitnumber

Number of items to return, which is also the pageSize of the results object.

Returns
Return Type:EventsQueryBuilder
JavaScript
const query = wixEventsV2.queryEvents().limit(10);
Errors

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

Did this help?

lt( )


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

The le() function refines a EventsQueryBuilder 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:

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

Property whose value is compared with value.


valueany

Value to compare against.

Returns
Return Type:EventsQueryBuilder
JavaScript
const query = wixEventsV2.queryEvents().lt("_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?

ne( )


Refines a query to match items where the specified property doesn't equal the specified value.

The ne() function refines a EventsQueryBuilder 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'.

Method Declaration
Copy
function ne(propertyName: string, value: any): EventsQueryBuilder;
Method Parameters
propertyNamestring

Property whose value is compared with value.


valueany

Value to compare against.

Returns
Return Type:EventsQueryBuilder
JavaScript
const query = wixEventsV2 .queryEvents() .ne("_id", "bb19b637-74ce-55d3-ae32-430b588051da");
Errors

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

Did this help?

skip( )


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.

Method Declaration
Copy
function skip(skip: number): EventsQueryBuilder;
Method Parameters
skipnumber

Number of items to skip in the query results before returning the results.

Returns
Return Type:EventsQueryBuilder
JavaScript
const query = wixEventsV2.queryEvents().skip(10);
Errors

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

Did this help?