HeliumDeploymentLog
No description
HeliumDeploymentLog(
jobId: ID!
filters: HeliumDeploymentLogFiltersInput
): HeliumDeploymentLog!
Arguments
HeliumDeploymentLog.jobId
● ID!
non-null scalar
HeliumDeploymentLog.filters
● HeliumDeploymentLogFiltersInput
input
Type
HeliumDeploymentLog
object
Examples
Query:
HeliumDeploymentLog(
$jobId: ID!,
$filters: HeliumDeploymentLogFiltersInput
) {
HeliumDeploymentLog(
jobId: $jobId,
filters: $filters
) {
events {
...HeliumDeploymentLogEventFragment
}
nextForwardToken
nextBackwardToken
}
}
Variables:
{
"jobId": "58ccb96c-8e90-4464-86e0-f284442981df",
"filters": "HeliumDeploymentLogFiltersInput"
}
Response:
{
"data": {
"HeliumDeploymentLog": {
"events": [
"HeliumDeploymentLogEvent"
],
"nextForwardToken": "xyz789",
"nextBackwardToken": "xyz789"
}
}
}