Hi all, not sure if anyone is using Pixar’s tractor but in any case, I am trying to do some scripting in which I am querying for the field “Real Elapsed” that is only seen when you are selecting a task.
I tried with the following code, in hope of seeing the attribute name, but unable to do so.
query_string = ("state=active and projects like MYSHOW and title like ImageConversion")
my_tasks = tq.tasks(
search=query_string,
limit=None,
archive=False)
I had only wanted to query for “ImageConversion” tasks found in the jobs of MYSHOW.
Wondering if anyone can help me?