11-19-2019, 09:18 PM
The return value you are getting doesn't make sense. It shouldn't return a "dolly3d/assets" list ... it should return a "dolly3d/assets_in_assets" list or at list an empty list if no results are found.
In src/pyasm/search/search.py we have the code:
2127 search.add_relationship_filters(sobjects, path=path)
2128 related_sobjects = search.get_sobjects()
If you could add in between these lines:
print("related_search: ", search.get_statement())
we can see exactly what sql is being called. That would be really helpful.
In src/pyasm/search/search.py we have the code:
2127 search.add_relationship_filters(sobjects, path=path)
2128 related_sobjects = search.get_sobjects()
If you could add in between these lines:
print("related_search: ", search.get_statement())
we can see exactly what sql is being called. That would be really helpful.