I have a core data model like so:
SALES_REP <--->> CUSTOMER <---->> PURCHASE_AGREEMENT <<------->> PRODUCTS
I can get the entity description for the Purchase Agreement and I can get the relationships (toCustomer and hasProducts)
[NSEntityDescription relationshipsByName];
but is it possible to get the Sales_Rep as well or do I have to pull that through the CUSTOMER entity?
Thanks