Refines a query to match items where the specified property equals the specified value.
The eq()
function refines a GroupRequestsQueryBuilder
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'
.
function eq(propertyName: string, value: any): GroupRequestsQueryBuilder;
Property whose value is compared with value
.
Value to compare against.
const query = groupRequests.queryGroupRequests().eq("status", UNKNOWN_STATUS);
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.
Refines a query to match items where the specified property contains a value.
The exists()
function refines a GroupRequestsQueryBuilder
to only match items where the value of the specified propertyName
doesn't equal null or undefined.
exists()
checks for either existence or non-existence based on the boolean parameter. Note that exists()
does match items where the value of the specified propertyName
is an empty string or an invalid value. exists()
is only useful for properties which don't contain default values and therefore their values may be unassigned.
function exists(
propertyName: string,
value: boolean,
): GroupRequestsQueryBuilder;
const query = groupRequests.queryGroupRequests().exists("description", true);
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.
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.
function find(): Promise<GroupRequestsQueryResult>;
const query = groupRequests.queryGroupRequests().find();
This method doesn’t return any custom errors, but may return standard errors. Learn more about standard Wix errors.