Skip to content

BugFix LiveQuery - update readme.md #150

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 17 commits into from
Apr 13, 2019
Merged

BugFix LiveQuery - update readme.md #150

merged 17 commits into from
Apr 13, 2019

Conversation

RodrigoSMarques
Copy link
Contributor

  • BugFix LiveQuery
  • Update README.md -> Reorganization of sessions and inclusion of documentation about LiveQuery

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Add Support to Relational Queries
Update documentation with example for Relational Queries and Counting Objects
BugFix LiveQuery
Bugfix LiveQuery
Reorganization of sessions and inclusion of documentation on LiveQuery
Bugfix LiveQuery
@RodrigoSMarques RodrigoSMarques changed the title Release/1.0.17 BugFix LiveQuery - update readme.md Apr 13, 2019
@RodrigoSMarques
Copy link
Contributor Author

I appreciate if you can do a review in the text. My native language is not English and may have some error in my changes in README.md

Copy link

@danibjor danibjor left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Awesome 😃 looking forward to test this out. Docs look fine for what I can see.

@phillwiggins
Copy link
Member

Wow, great work!

@RodrigoSMarques
Copy link
Contributor Author

Thank You.

I have not had time to update the sample application. I'll try to do.

But following the guidance of the documentation has no error.

_connectMessage = {
'op': 'connect',
'applicationId': _client.data.applicationId,
'clientKey': _client.data.clientKey
Copy link

@danibjor danibjor Apr 13, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

As clientKey is optional, connecting throws an error if clientId is not set in Parse().initialize( ... )

Suggested change
'clientKey': _client.data.clientKey
'clientKey': _client.data.clientKey ?? ''

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

it is true. I had not thought of that. I have to review the whole logic because the key can not be sent empty.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I tested setting an empty string as key when initializing Parse, that works just fine. So the fix suggested should do the trick.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

OK. I'm making the change now.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Changed to make optional clientKey
@phillwiggins
Copy link
Member

Brilliant!

@phillwiggins phillwiggins merged commit 4c0c56d into parse-community:release/1.0.17 Apr 13, 2019
phillwiggins added a commit that referenced this pull request Apr 14, 2019
* 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
phillwiggins added a commit that referenced this pull request Apr 14, 2019
* 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

* Release 1.0.18 created

* save fix
phillwiggins added a commit that referenced this pull request Apr 14, 2019
* 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

* Release 1.0.18 created

* save fix

* BugFix ParseObject Save and LiveQuery (#155)

BugFix ParseObject Save and LiveQuery

* Fixed ParseObject create
fischerscode pushed a commit to fischerscode/Parse-SDK-Flutter that referenced this pull request Sep 5, 2020
* Added repo example

* Corrected repo example

* ParseResponse accepts list results and count

* Private/test (parse-community#140)

* ParseResponse accepts list results and count

* Corrected toPointer logic

* Corrected date issue

* Code clean

* Code clean

* Private/test (parse-community#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 (parse-community#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  (parse-community#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 (parse-community#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 (parse-community#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 (parse-community#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 (parse-community#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
fischerscode pushed a commit to fischerscode/Parse-SDK-Flutter that referenced this pull request Sep 5, 2020
* Added repo example

* Corrected repo example

* ParseResponse accepts list results and count

* Private/test (parse-community#140)

* ParseResponse accepts list results and count

* Corrected toPointer logic

* Corrected date issue

* Code clean

* Code clean

* Private/test (parse-community#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 (parse-community#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  (parse-community#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 (parse-community#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 (parse-community#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 (parse-community#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 (parse-community#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

* Release 1.0.18 created

* save fix
fischerscode pushed a commit to fischerscode/Parse-SDK-Flutter that referenced this pull request Sep 5, 2020
* Added repo example

* Corrected repo example

* ParseResponse accepts list results and count

* Private/test (parse-community#140)

* ParseResponse accepts list results and count

* Corrected toPointer logic

* Corrected date issue

* Code clean

* Code clean

* Private/test (parse-community#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 (parse-community#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  (parse-community#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 (parse-community#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 (parse-community#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 (parse-community#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 (parse-community#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

* Release 1.0.18 created

* save fix

* BugFix ParseObject Save and LiveQuery (parse-community#155)

BugFix ParseObject Save and LiveQuery

* Fixed ParseObject create
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants