Hi,
Given the simple hierarchy of entities: Project->Sequence->Shot, I can list all shots for the project using
p = tank.shotgun.find_one('Project',[["name", "is", "My project name"]])
shots = tank.shotgun.find('Shot', [["project", "is", p ]] )
Now, for some of these retrieved shots, I want to find the sequences associated with them. How can I do that?