Search.../

eq( )

Developer Preview

Refines a query to match items where the specified property equals the specified value.

Description

The eq() function refines a AttendancesQueryBuilder to match only items where the value of the specified propertyName equals the specified value. eq() 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 eq() is case-sensitive, so 'text' isn't equal to 'Text'.

Authorization

Request

This endpoint does not take any parameters

Response Object

Returns an empty object.

Status/Error Codes

Was this helpful?

Add an eq filter to a query

Copy Code
1const query = attendance.queryAttendance.eq('_id', 'some-id');
2
Create a query, add an eq filter, and run it

Copy Code
1import { attendance } from 'wix-bookings.v2';
2
3export async function myQueryFunction() {
4 const results = await attendance
5 .queryAttendance()
6 .eq('_id', 'bb19b637-74ce-55d3-ae32-430b588051da')
7 .find();
8
9 if (results.items.length > 0) {
10 const items = results.items;
11 const firstItem = items[0];
12 const pageSize = results.pageSize;
13 const hasNext = results.hasNext();
14 const hasPrev = results.hasPrev();
15 const length = results.length;
16 const query = results.query;
17
18 return items;
19 } else {
20 // Handle if no matching items found
21 }
22}
23