Object
AgentError
An error that has occurred on the agent machine.
Example
Query
query agent($id: ID!) {
agent(id: $id) {
error {
code
error
}
}
}
Variables
{
"id": "1"
}
Result
{
"data": {
"agent": {
"error": {
"code": null
"error": null
}}
}
}
}