Reputation: 6998
I have a user object with dozens of keys on it. Is it possible to give a query some parameters such that only certain fields on the user come back and I have to fetch the rest?
Upvotes: 0
Views: 66
Reputation: 630
To limit the keys in the returned result set you can use 'keys' parameter in rest api.
Sample GET request: https://demodomain/parse/classes/ClassName?keys=key1,key2,key3
For more: https://docs.parseplatform.org/rest/guide/#query-constraints
Upvotes: 1