You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Queries allow you to recall objects that you've saved to parse-server.
307
+
Queries allow you to recall objects that you've saved to parse-server.
306
308
Query methods and parameters allow allow a varying degree of querying for objects, from all objects of a class to objects created within a particular date range and more.
307
309
308
310
```php
@@ -327,6 +329,59 @@ $first = $query->first();
327
329
$query->each(function($obj) {
328
330
echo $obj->getObjectId();
329
331
});
332
+
333
+
```
334
+
#### Aggregate
335
+
336
+
Queries can be made using aggregates, allowing you to retrieve objects over a set of input values.
337
+
Keep in mind that `_id` does not exist in parse-server. Please replace with `objectId`. MasterKey is Required
338
+
339
+
For a list of available operators please refer to Mongo Aggregate Documentation.
0 commit comments