Skip to content

Commit f4ccb7a

Browse files
authored
Merge pull request #103 from rodrigosmarques/master
Update README.md
2 parents f63e5d3 + 5e070ff commit f4ccb7a

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed

README.md

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,12 @@ The features available are:-
9393
* NotEqualTo
9494
* StartsWith
9595
* EndsWith
96+
* Exists
97+
* Near
98+
* WithinMiles
99+
* WithinKilometers
100+
* WithinRadians
101+
* WithinGeoBox
96102
* Regex
97103
* Order
98104
* Limit
@@ -120,6 +126,8 @@ The features available are:-
120126
* Complex queries as shown above
121127
* Pin
122128
* Plenty more
129+
* Counters
130+
* Array Operators
123131

124132
## Custom Objects
125133
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
166174
var dietPlan = DietPlan().fromPin('OBJECT ID OF OBJECT');
167175
```
168176

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+
169200
## Users
170201

171202
You can create and control users just as normal using this SDK.
@@ -195,6 +226,7 @@ Other user features are:-
195226
* Get all users
196227
* Save
197228
* Destroy user
229+
* Queries
198230

199231
## Config
200232

@@ -212,23 +244,27 @@ ParseConfig().addConfig('TestConfig', 'testing');
212244

213245
Main:
214246
* Users
247+
* Installation
215248
* Objects
216249
* Queries
217250
* LiveQueries
218251
* GeoPoints
252+
* Files
219253
* Persistent storage
220254
* Debug Mode - Logging API calls
221255
* Manage Session ID's tokens
222256

223257
User:
224258
* Create
225259
* Login
260+
* Logout
226261
* CurrentUser
227262
* RequestPasswordReset
228263
* VerificationEmailRequest
229264
* AllUsers
230265
* Save
231266
* Destroy
267+
* Queries
232268

233269
Objects:
234270
* Create new object

0 commit comments

Comments
 (0)