eq( )


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

The eq() function refines a ActivityCountersQueryBuilder 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'.

Method Declaration
Copy
function eq(propertyName: string, value: any): ActivityCountersQueryBuilder;
Method Parameters
propertyNamestring

Property whose value is compared with value.


valueany

Value to compare against.

Returns
JavaScript
const query = activityCounters .queryActivityCounters() .eq("memberId", "some-member-id");
Errors

This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.

Did this help?

find( )


Returns the query results.

The find() function returns a Promise that resolves to the query results and metadata. The Promise is rejected if find() is called with insufficient permissions or if any of the previous functions used to refine the query are invalid.

Method Declaration
Copy
function find(): Promise<ActivityCountersQueryResult>;
Request
This method does not take any parameters
Returns
Return Type:Promise<ActivityCountersQueryResult>
JavaScript
const query = activityCounters.queryActivityCounters().find();
Errors

This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.

Did this help?