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
* Added repo example
* Corrected repo example
* ParseResponse accepts list results and count
* Private/test (#140)
* ParseResponse accepts list results and count
* Corrected toPointer logic
* Corrected date issue
* Code clean
* Code clean
* Private/test (#141)
* ParseResponse accepts list results and count
* Corrected toPointer logic
* Corrected date issue
* Code clean
* Code clean
* Code clean
* Fixed delete
* Fixed ParseUser setting ParseObject extensions
* Fix lost lat, lng data (#143)
Update so SubClass of ParseObject uses internal Map for value storage. Changes in v1.0.17 breaks ParseGeoPoint. This is tested and seems to fix the issue.
* Deprecated result
* Corrected logic on response
* ParseFile fix
* Removed protected
* Testing ParseUser conversion
* Fixed ParseFile code saving
* ParseInstallation fix
* ParseUser supporting custom user objects
* Add Support to Relational Queries / Counting Objects (#146)
* Add Support to Relational Queries
Add Support to Relational Queries
* Add Support to Counting Objects
Add Support to Counting Objects
https://docs.parseplatform.org/rest/guide/#counting-objects
* Update the documentation with Relational Queries and Count Objects (#147)
* Add Support to Relational Queries
Add Support to Relational Queries
* Add Support to Counting Objects
Add Support to Counting Objects
https://docs.parseplatform.org/rest/guide/#counting-objects
* Update README.md
Update documentation with example for Relational Queries and Counting Objects
* Update README.md
* Update README.md - Small typo (#148)
* Add Support to Relational Queries
Add Support to Relational Queries
* Add Support to Counting Objects
Add Support to Counting Objects
https://docs.parseplatform.org/rest/guide/#counting-objects
* Update README.md
Update documentation with example for Relational Queries and Counting Objects
* Update README.md
* Update README.md
* BugFix LiveQuery - update readme.md (#150)
* Add Support to Relational Queries
Add Support to Relational Queries
* Add Support to Counting Objects
Add Support to Counting Objects
https://docs.parseplatform.org/rest/guide/#counting-objects
* Update README.md
Update documentation with example for Relational Queries and Counting Objects
* Update README.md
* Update README.md
* BugFix LiveQuery
BugFix LiveQuery
* Bugfix LiveQuery
Bugfix LiveQuery
* Update README.md
Reorganization of sessions and inclusion of documentation on LiveQuery
* Update README.md
* Update README.md
* Bugfix LiveQuery
Bugfix LiveQuery
* Changed to make optional clientKey
Changed to make optional clientKey
* Bugfix parseEncode function with ParseObjects in List (#151)
* Add Support to Relational Queries
Add Support to Relational Queries
* Add Support to Counting Objects
Add Support to Counting Objects
https://docs.parseplatform.org/rest/guide/#counting-objects
* Update README.md
Update documentation with example for Relational Queries and Counting Objects
* Update README.md
* Update README.md
* BugFix LiveQuery
BugFix LiveQuery
* Bugfix LiveQuery
Bugfix LiveQuery
* Update README.md
Reorganization of sessions and inclusion of documentation on LiveQuery
* Update README.md
* Update README.md
* Bugfix LiveQuery
Bugfix LiveQuery
* Changed to make optional clientKey
Changed to make optional clientKey
* Bugfix parseEncode function with ParseObjects in List
Bugfix parseEncode function with ParseObjects in List
* 1.0.17 - Cody tidy
* ParseResponse accepts list results and count
@@ -13,7 +13,7 @@ Want to get involved? Join our Slack channel and help out! (http://flutter-parse
13
13
To install, either add to your pubspec.yaml
14
14
```yml
15
15
dependencies:
16
-
parse_server_sdk: ^1.0.16
16
+
parse_server_sdk: ^1.0.17
17
17
```
18
18
or clone this repository and add to your project. As this is an early development with multiple contributors, it is probably best to download/clone and keep updating as an when a new feature is added.
if (apiResponse.success && apiResponse.result != null) {
237
+
int countGames = apiResponse.count;
238
+
}
161
239
```
162
240
163
-
## Save objects using pins
241
+
## Live Queries
242
+
This tool allows you to subscribe to a QueryBuilder you are interested in. Once subscribed, the server will notify clients
243
+
whenever a ParseObject that matches the QueryBuilder is created or updated, in real-time.
164
244
165
-
You can now save an object by calling .pin() on an instance of an object
245
+
Parse LiveQuery contains two parts, the LiveQuery server and the LiveQuery clients. In order to use live queries, you need
246
+
to set up both of them.
166
247
248
+
The Parse Server configuration guide on the server is found here https://docs.parseplatform.org/parse-server/guide/#live-queries and is not part of this documentation.
249
+
250
+
Initialize the Parse Live Query by entering the parameter liveQueryUrl in Parse().initialize:
0 commit comments