I have a fundamental question for Queries in CloudKit.
I have a relationship structure set with references where Courses->Holes->Locations. Basically a course owns 18 holes, which each own 4 locations...
Is there a way to query to find all locations beneath a given Course without querying by hole? I am trying to reduce the number of queries I have to do to CloudKit to get the information I need.
Today I query to get the record for a Course, then one query for all the holes belonging to that course, then I have 18 queries for locations by hole...
If I could query all locations in a course, I could reduce my queries from 20 total to 3 total. I know this is possible for a similar structure in coreData. Can't figure it out for Cloudkit.