Search.../

limit( )

Limits the number of items the query returns.

Description

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

By default, limit is set to 50.

The maximum value that limit() can accept is 1000.

Syntax

function limit(limit: string): JoinRequestsQueryBuilder

limit Parameters

NAME
TYPE
DESCRIPTION
limit
string

limit The number of items to return, which is also the pageSize of the results object.

Returns

A JoinRequestsQueryBuilder object representing the refined query.

Was this helpful?

Add a limit to a query

Copy Code
1const query = joinRequests.queryJoinRequests().limit(10);
Create a query, add a limit, and run it

Copy Code
1import { Permissions, webMethod } from 'wix-web-module';
2import { joinRequests } from 'wix-groups-backend';
3
4export const myQueryJoinRequestsFunction = webMethod(Permissions.Anyone, () => {
5 return joinRequests.queryJoinRequests()
6 .limit(10)
7 .find()
8 .then((results) => {
9 if (results.items.length > 0) {
10 const items = results.items;
11 const firstItem = items[0];
12 const pageSize = results.pageSize;
13 const totalPages = results.totalPages;
14 const totalCount = results.totalCount;
15 const currentPage = results.currentPage();
16 const next = results.next();
17 const previous = results.prev();
18 const hasNext = results.hasNext();
19 const hasPrev = results.hasPrev();
20 const length = results.length;
21
22 return items;
23 } else {
24 // Handle case where no matching items found
25 }
26 })
27 .catch((error) => {
28 console.error(error);
29 })
30
31});