OBJECT
TaskLog
link GraphQL Schema definition
1 type TaskLog { 2 3 #   URI to the task log file 4 : String  5 6 #   The entire text contents of the log file. Note that this value can long. 7 : String  8 9 #   The log file in JSON form. If the log file contains valid JSON, 10 #   this field will contain the native structure. If the log file does not 11 #   contain valid JSON, this field will contain a single property called 12 #   `text` with a string value containing the entire log file. 13 : JSONData  14 15 }