Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
36 changes: 36 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,12 @@ The features available are:-
* NotEqualTo
* StartsWith
* EndsWith
* Exists
* Near
* WithinMiles
* WithinKilometers
* WithinRadians
* WithinGeoBox
* Regex
* Order
* Limit
Expand Down Expand Up @@ -120,6 +126,8 @@ The features available are:-
* Complex queries as shown above
* Pin
* Plenty more
* Counters
* Array Operators

## Custom Objects
You can create your own ParseObjects or convert your existing objects into Parse Objects by doing the following:
Expand Down Expand Up @@ -166,6 +174,29 @@ and to retrieve it
var dietPlan = DietPlan().fromPin('OBJECT ID OF OBJECT');
```

## Increment Counter values in objects

Retrieve it, call

```
var response = await dietPlan.increment("count", 1);

```

## Array Operator in objects

Retrieve it, call

```
var response = await dietPlan.add("listKeywords", ["a", "a","d"]);

var response = await dietPlan.addUnique("listKeywords", ["a", "a","d"]);

var response = await dietPlan.remove("listKeywords", ["a"]);

```


## Users

You can create and control users just as normal using this SDK.
Expand Down Expand Up @@ -195,6 +226,7 @@ Other user features are:-
* Get all users
* Save
* Destroy user
* Queries

## Config

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

Main:
* Users
* Installation
* Objects
* Queries
* LiveQueries
* GeoPoints
* Files
* Persistent storage
* Debug Mode - Logging API calls
* Manage Session ID's tokens

User:
* Create
* Login
* Logout
* CurrentUser
* RequestPasswordReset
* VerificationEmailRequest
* AllUsers
* Save
* Destroy
* Queries

Objects:
* Create new object
Expand Down