I need to check if an async relationship has been loaded without triggering the load, is this possible?
There is no official way to accomplish this yet, but unofficially you can do
// this will be null if not loaded, and populated if it has at least started loading
if(model._relationships.yourRelationshipName) {...}