find( )


Returns the items that match the query.

The find() function returns a Promise that resolves to the results found by the query and some information about the results. The Promise is rejected if find() is called with incorrect permissions or if any of the functions used to refine the query are invalid.

Method Declaration
Copy
Method Parameters
optionsOptions

Authorization options.

Returns
Return Type:Promise<GroupMembersQueryResult>
JavaScript
Did this help?

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. 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.

Method Declaration
Copy
function limit(limit: string): GroupMembersQueryBuilder;
Method Parameters
limitstringRequired

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

Returns
JavaScript
const query = members.queryGroupMembers().limit(10);
Did this help?