1 2 3 4 5 6 7 8 9 10 11 12 13 14
subscription BuildLogs($deploymentId: String!, $filter: String, $limit: Int) { buildLogs(deploymentId: $deploymentId, filter: $filter, limit: $limit) { ...LogFields } } fragment LogFields on Log { timestamp message attributes { key value } }