Object

AgentError

An error that has occurred on the agent machine.

Fields

code(): Int
A reference number for the error. This is used to identify the exact error during troubleshooting.
error(): String
The content of the error message, indicating what caused the error and what you need to do to resolve it.

Example

Query
query agent($id: ID!) {
   agent(id: $id) {
     error {
       code
       error
     }
  }
}
Variables
{
  "id": "1"
}
Result
{
  "data": {
    "agent": {
      "error": {
        "code": null
        "error": null
      }}
    }
  }
}