Search.../

endsWith( )

Refines a query to match items whose specified property value ends with a specified string.

Description

The endsWith() function refines a GroupsQueryBuilder to only match items where the value of the specified property ends with a specified string. Matching with endsWith() is case-sensitive, so "TEXT" does not end with "ext".

You can only use endsWith() with a property whose value is a String.

Syntax

function endsWith(propertyName: string, value: string): GroupsQueryBuilder

endsWith Parameters

NAME
TYPE
DESCRIPTION
propertyName
string

The property whose value will be compared with value.

Supported property:

  • name
value
string

The value to match against.

Returns

A GroupsQueryBuilder object that contains the refined query.

Return Type:

Was this helpful?

Add a endsWith filter to a query

Copy Code
1const query = groups.queryGroups().endsWith("name", "s");
Create a query, add a endsWith filter, and run it

Copy Code
1import { Permissions, webMethod } from 'wix-web-module';
2import { groups } from 'wix-groups-backend';
3
4export const myQueryGroupsFunction = webMethod(Permissions.Anyone, () => {
5 return groups.queryGroups()
6 .endsWith("name", "s")
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});