-
-
Notifications
You must be signed in to change notification settings - Fork 4.8k
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
Support Distinct for special fields #5144
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
Codecov Report
@@ Coverage Diff @@
## master #5144 +/- ##
==========================================
- Coverage 93.91% 93.84% -0.07%
==========================================
Files 123 123
Lines 8941 8939 -2
==========================================
- Hits 8397 8389 -8
- Misses 544 550 +6
Continue to review full report at Codecov.
|
@flovilmart I dismissed your review, can you approve and merge? |
dplewis, can I perform a distinct query from an iOS app? I did not see it in the doc and in the issues about distinct it looks like it may need to be done from a cloud function. Can you give me a bit more info please? Best |
Distinct requires Master Key so it can’t be used on the client side. Cloud code should be used in your case. |
So do you have an example of how it would be used? Cloud code is fine, my backend is Node.js.
Thanks for the info.
On Aug 21, 2019, at 10:45 AM, Diamond Lewis <notifications@github.com<mailto:notifications@github.com>> wrote:
Distinct requires Master Key so it can’t be used on the client side. Cloud code should be used in your case.
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub<#5144?email_source=notifications&email_token=AJ5GWY3I6PEDPHEFZW4623TQFVIHTA5CNFSM4F7NRW32YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD4Z5BAY#issuecomment-523489411>, or mute the thread<https://github.com/notifications/unsubscribe-auth/AJ5GWY4SJ72B3L2ILNSVEP3QFVIHTANCNFSM4F7NRW3Q>.
|
You can check the JavaScript guide. const query = new Parse.Query("User"); |
Awesome, thank you!! You have been a big help!!
On Aug 21, 2019, at 12:48 PM, Diamond Lewis <notifications@github.com<mailto:notifications@github.com>> wrote:
You can check the JavaScript guide.
const query = new Parse.Query("User");
query.distinct("age")
.then(function(results) {
// results contains unique age
})
.catch(function(error) {
// There was an error.
});
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub<#5144?email_source=notifications&email_token=AJ5GWYYD6CQXVCDPSW3DQM3QFVWVZA5CNFSM4F7NRW32YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD42K6GY#issuecomment-523546395>, or mute the thread<https://github.com/notifications/unsubscribe-auth/AJ5GWYYYOECL3DNSKQ4TMALQFVWVZANCNFSM4F7NRW3Q>.
|
* Support Distinct for special fields * update changelog
No description provided.