I have an application which uses parse as database and has following tables.
User Table: Provided as default class by parse additionally it has user skills, user address, myJobs (which is an array of object ids of Job Class, the jobs that I have posted.), myAppliedJobs (which is an array of object ids of AppliedJob Class, the jobs I have applied).
Job Table: The table to hold job data like job name, desired skills, job location etc.
AppliedJob: Which has a mapping between user and job via pointers plus some additional information like notes, wage change.
Now, In a screen I list all the jobs that I have posted. Which I can get easily with the array of my jobs. But that costs me an extra call to do fetch if needed.
Then I have an option to view all the applicants that have applied to my job, which I do by querying applied jobs class with help of jobid to get applied job objects array. Now with the help of this array I get all user ids and fetch them via fetch all in background.
This is adding to calls per second which is my prime objective to reduce. Please give me some insight.