@@ -93,6 +93,12 @@ The features available are:-
93
93
* NotEqualTo
94
94
* StartsWith
95
95
* EndsWith
96
+ * Exists
97
+ * Near
98
+ * WithinMiles
99
+ * WithinKilometers
100
+ * WithinRadians
101
+ * WithinGeoBox
96
102
* Regex
97
103
* Order
98
104
* Limit
@@ -120,6 +126,8 @@ The features available are:-
120
126
* Complex queries as shown above
121
127
* Pin
122
128
* Plenty more
129
+ * Counters
130
+ * Array Operators
123
131
124
132
## Custom Objects
125
133
You can create your own ParseObjects or convert your existing objects into Parse Objects by doing the following:
@@ -166,6 +174,29 @@ and to retrieve it
166
174
var dietPlan = DietPlan().fromPin('OBJECT ID OF OBJECT');
167
175
```
168
176
177
+ ## Increment Counter values in objects
178
+
179
+ Retrieve it, call
180
+
181
+ ```
182
+ var response = await dietPlan.increment("count", 1);
183
+
184
+ ```
185
+
186
+ ## Array Operator in objects
187
+
188
+ Retrieve it, call
189
+
190
+ ```
191
+ var response = await dietPlan.add("listKeywords", ["a", "a","d"]);
192
+
193
+ var response = await dietPlan.addUnique("listKeywords", ["a", "a","d"]);
194
+
195
+ var response = await dietPlan.remove("listKeywords", ["a"]);
196
+
197
+ ```
198
+
199
+
169
200
## Users
170
201
171
202
You can create and control users just as normal using this SDK.
@@ -195,6 +226,7 @@ Other user features are:-
195
226
* Get all users
196
227
* Save
197
228
* Destroy user
229
+ * Queries
198
230
199
231
## Config
200
232
@@ -212,23 +244,27 @@ ParseConfig().addConfig('TestConfig', 'testing');
212
244
213
245
Main:
214
246
* Users
247
+ * Installation
215
248
* Objects
216
249
* Queries
217
250
* LiveQueries
218
251
* GeoPoints
252
+ * Files
219
253
* Persistent storage
220
254
* Debug Mode - Logging API calls
221
255
* Manage Session ID's tokens
222
256
223
257
User:
224
258
* Create
225
259
* Login
260
+ * Logout
226
261
* CurrentUser
227
262
* RequestPasswordReset
228
263
* VerificationEmailRequest
229
264
* AllUsers
230
265
* Save
231
266
* Destroy
267
+ * Queries
232
268
233
269
Objects:
234
270
* Create new object
0 commit comments