OBJECT

TaskLog

link GraphQL Schema definition

1type TaskLog {
2
3# URI to the task log file
4uri: String
5
6# The entire text contents of the log file. Note that this value can long.
7text: 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.
13jsondata: JSONData
14
15}