OBJECT

AsyncRequestStatus

Description

Supported in v5.0+

link GraphQL Schema definition

  • type AsyncRequestStatus {
  • # Supported in v5.0+
  • # The end time of the request.
  • endTime: DateTime
  • # Required. Supported in v5.0+
  • # v5.0: The ID of the request object. Use it to poll the status.
  • # v5.1+: The ID of the request object used to poll the status.
  • id: String!
  • # Required. Supported in v5.0+
  • # References to any related objects.
  • links: [Link!]!
  • # Supported in v5.0+
  • # The ID of the node where the job ran.
  • nodeId: String
  • # Supported in v5.0+
  • # v5.0: The current progress in terms of percentage of the async request.
  • # v5.1+: The current percentage progress of the asynchronous request.
  • progress: Float
  • # Supported in v5.0+
  • # The start time of the request.
  • startTime: DateTime
  • # Required. Supported in v5.0+
  • # v5.0: Status of the id.
  • # v5.1+: Status of the ID.
  • status: String!
  • # Supported in v5.0+
  • # Any errors encountered.
  • error: RequestErrorInfo
  • }