We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 57f49d8 commit 5bfd481Copy full SHA for 5bfd481
src/RestQuery.js
@@ -347,7 +347,7 @@ RestQuery.prototype.replaceSelect = function() {
347
let additionalOptions = {
348
redirectClassNameForKey: selectValue.query.redirectClassNameForKey,
349
limit: selectValue.query.limit,
350
- keys: 'objectId',
+ keys: `objectId,${selectValue.key}`,
351
};
352
353
var subquery = new RestQuery(
@@ -396,7 +396,7 @@ RestQuery.prototype.replaceDontSelect = function() {
396
}
397
398
redirectClassNameForKey: dontSelectValue.query.redirectClassNameForKey,
399
+ keys: `objectId,${dontSelectValue.key}`,
400
401
402
0 commit comments