When calling the aSync version of the loadRelations function, it does not go in the response callback.
Using the Sync version of the function works.
Am I doing something wrong? In the example below, the response is never called.
let query = LoadRelationsQueryBuilder()
query.setRelationName("subscriptions")
ClientManager.backendless.data.of(BackendlessUser.ofClass()).loadRelations("FF92D849-4324-8601-FFAA-3B2A9ADC8E00", queryBuilder: query, response: {(items: [Any]?) -> Void in
print(items!)
}) { (fault) in
print(fault!)
}