Search.../

pageSize

Returns the requested page size.

Description

pageSize returns the page size set in limit() in ServiceOptionsAndVariantssQueryBuilder.

Type:

number

Was this helpful?

Get the query's page size

Copy Code
1const requestedPageSize = results.pageSize;
2
Perform a query and get pageSize from the result

Copy Code
1import { serviceOptionsAndVariants } from 'wix-bookings.v2';
2
3export async function myQueryFunction() {
4 const results = await serviceOptionsAndVariants
5 .queryServiceOptionsAndVariants()
6 .find();
7
8 return results.pageSize;
9}
10