-
-
Notifications
You must be signed in to change notification settings - Fork 596
feat: Allow Parse.Object
field names to begin with underscore _
to access internal fields of Parse Server
#2475
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
Conversation
Thanks for opening this pull request! |
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## alpha #2475 +/- ##
=========================================
Coverage 100.00% 100.00%
=========================================
Files 64 64
Lines 6256 6256
Branches 1451 1447 -4
=========================================
Hits 6256 6256 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Parse.Object
field names to start with underscore to access internal fields of Parse Server
Parse.Object
field names to start with underscore to access internal fields of Parse ServerParse.Object
field names to begin with underscore to access internal fields of Parse Server
Parse.Object
field names to begin with underscore to access internal fields of Parse ServerParse.Object
field names to begin with underscore _
to access internal fields of Parse Server
Does this also remove the restriction for queries, for example |
The restriction for queries must be handled server side |
So does the Parse JS SDK already allow sending a query with |
Oh yes you can send the query |
# [6.1.0-alpha.1](6.0.0...6.1.0-alpha.1) (2025-03-05) ### Features * Allow `Parse.Object` field names to begin with underscore `_` to access internal fields of Parse Server ([#2475](#2475)) ([08e43ba](08e43ba))
🎉 This change has been released in version 6.1.0-alpha.1 |
# [6.1.0](6.0.0...6.1.0) (2025-03-17) ### Features * Add `Parse.Query` option `useMaintenanceKey` ([#2484](#2484)) ([2ead3f3](2ead3f3)) * Allow `Parse.Object` field names to begin with underscore `_` to access internal fields of Parse Server ([#2475](#2475)) ([08e43ba](08e43ba)) * Publish TypeScript definitions ([#2491](#2491)) ([fc3e573](fc3e573))
🎉 This change has been released in version 6.1.0 |
Pull Request
Issue
With the introduction of access scopes, internal fields can be read from and written to.
Closes: #2474
Approach
Tasks