Say I've created a custom field for the tasks in a project named my_custom_field. How can I get that field data from a query?
This returns the task but not my custom field:
filters = [['id', 'is',123]]
fields = ['content', 'entity', 'my_custom_field']
result = sg.find_one('Task', filters, fields)