You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I can get to the entities no problem but what I am unable to figure out is to access properties from a created entity set. The Odata provider is sharefile. For example, my selects for this are not working:
I was able to solve it partly by removing the 'Items' from the baseurl. Great documentation ;(. Now it is working correctly if I use it in the from as $my_entity->from('Items')->expand('Children)'
I am still trying to figure out how to access the properties to do my own parsing. From what I have do I need to create a new STDClass for each entity and then access them that way or how can I get access if its even possible at current code state?
I can get to the entities no problem but what I am unable to figure out is to access properties from a created entity set. The Odata provider is sharefile. For example, my selects for this are not working:
$yada->select('Id,Name,CreatorNameShort,Info,Info/IsAHomeFolder,Children/Id,Children/Name,Children/CreationDate,Children/FileSizeBytes,Children/CreatorNameShort,Children/FileCount');
This has a root folder structure followed by the child folders. This would be root where users see folders, etc..
Access to a folder directly is same minus a has specified for the specific item.
What I am trying to achieve, if it is possible with this, is to create an entity collection like..
$my_collection
I create.then
$my_collection2->from($my_collection)
etc
I am unable to retrieve the properties as if I was using direct php property_exists...
Is this supported?
The text was updated successfully, but these errors were encountered: