Skip to content

Commit 2ee3d53

Browse files
authored
Fix parse-community#1990 Query.findAll() doesn't use exclude/excludeKeys
Signed-off-by: Samuel Denis-D'Ortun <[email protected]>
1 parent 549b7b3 commit 2ee3d53

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/ParseQuery.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -951,6 +951,9 @@ class ParseQuery {
951951
query._include = this._include.map(i => {
952952
return i;
953953
});
954+
query._exclude = this._exclude.map(i => {
955+
return i;
956+
});
954957
if (this._select) {
955958
query._select = this._select.map(s => {
956959
return s;

0 commit comments

Comments
 (0)