So I have two tables , School and Class. Class have pointer to School table. How can i retrive only ID of School pointer. I tried following:
var classQuery = new Parse.Query('Class');
-||-
classQuery.select('school') //
-||-
It didnt work. It returned whole object insead of only id; Can someone explain me how to get id from pointer instead of whole object ?