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
Manages whether non-master users are allowed to use the "explain" parameter on queries
Currently defaults to true, for backwards compatibility. However, this behaviour is deprecated, and at some point will default to false.
Added tests for it
Copy file name to clipboardExpand all lines: src/Deprecator/Deprecations.js
+5
Original file line number
Diff line number
Diff line change
@@ -22,4 +22,9 @@ module.exports = [
22
22
solution:
23
23
"Additionally, the environment variable 'PARSE_SERVER_ENABLE_EXPERIMENTAL_DIRECT_ACCESS' will be deprecated and renamed to 'PARSE_SERVER_DIRECT_ACCESS' in a future version; it is currently possible to use either one.",
Copy file name to clipboardExpand all lines: src/Options/docs.js
+1
Original file line number
Diff line number
Diff line change
@@ -52,6 +52,7 @@
52
52
* @property {Boolean} mountGraphQL Mounts the GraphQL endpoint
53
53
* @property {String} mountPath Mount path for the server, defaults to /parse
54
54
* @property {Boolean} mountPlayground Mounts the GraphQL Playground - never use this option in production
55
+
* @property {Boolean} nonMasterExplain Allow non-master users to use the `explain` query parameter, defaults to true
55
56
* @property {Number} objectIdSize Sets the number of characters in generated object id's, default 10
56
57
* @property {PagesOptions} pages The options for pages such as password reset and email verification. Caution, this is an experimental feature that may not be appropriate for production.
57
58
* @property {PasswordPolicyOptions} passwordPolicy The password policy for enforcing password related rules.
0 commit comments