Hi I have a client that has noticed a regression in the results returned from the Python api.
They are doing a find
on a Version querying the following fields:
default_fields =
"code",
"user.HumanUser.name",
"entity",
"entity.Shot.code",
"project",
"project.Project.tank_name",
"sg_task.Task.content",
]
When they do so however, they get the following response:
[{'code': 'ABC_123_123_456_789_comp_v009',
'entity': {'id': 3657, 'name': '123_456_789', 'type': 'Shot'},
'id': 17474,
'project': {'id': 584, 'name': 'ABCProject', 'type': 'Project'},
'project.Project.tank_name': 'ABC',
'sg_task.Task.content': None,
'type': 'Version',
'user.HumanUser.name': 'Rob Blau'}]
As you can see based off of the response, the entity.Shot.code
is no longer returningā¦
Iāve noticed this for task related content as well.
I have another client same version of the site (v8.41.0.524) that isnāt having this issueā¦
Is there a setting somewhere that turns off deep linking on the Python api?