OBJECT

ActiveQueryExecution

link GraphQL Schema definition

  • type ActiveQueryExecution {
  • # Execution ID
  • executionId: ID!
  • # Active Query Details
  • queryDetails: ActiveQuery!
  • # Start execution datetime
  • startTime: Time!
  • # Finish execution datetime
  • endTime: Time
  • # Elapsed Time
  • elapsedTime: String
  • # Query status
  • status: QueryStatus!
  • # Explanation (if failed)
  • failureExplanation: String
  • # Initiated by
  • initiatedBy: String!
  • # Query execution source
  • source: QuerySource!
  • # List of on asset query executions
  • #
  • # Arguments
  • # after: Returns the items in the list that come after the
  • # specified cursor.
  • # first: Returns the first n items from the list.
  • # before: Returns the items in the list that come before the
  • # specified cursor.
  • # last: Returns the last n items from the list.
  • assets(after: String, first: Int, before: String, last: Int): ActiveQueryExecutionOnAssetConnection!
  • }