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 d5e1c9f commit 65a109aCopy full SHA for 65a109a
spec/ParseQuery.spec.js
@@ -3231,6 +3231,17 @@ describe('Parse.Query testing', () => {
3231
});
3232
expect(response.data.results[0].foo).toBeUndefined();
3233
expect(response.data.results[0].hello).toBe('world');
3234
+
3235
+ const response2 = await request({
3236
+ url: Parse.serverURL + '/classes/TestObject',
3237
+ qs: {
3238
+ excludeKeys: ['foo', 'hello'],
3239
+ where: JSON.stringify({ objectId: obj.id }),
3240
+ },
3241
+ headers: masterKeyHeaders,
3242
+ });
3243
+ expect(response2.data.results[0].foo).toBeUndefined();
3244
+ expect(response2.data.results[0].hello).toBeUndefined();
3245
3246
3247
it('exclude keys with select same key', async () => {
0 commit comments