INPUT_OBJECT

UpdateProcessActivityLogInput

link GraphQL Schema definition

  • input UpdateProcessActivityLogInput {
  • clientMutationId: String
  • # Unique identifier of entity.
  • id: ID!
  • # Last modification time.
  • modified: DateTime
  • # Creation time.
  • created: DateTime
  • # Id of the actor.
  • actorId: ID
  • # Id of the application.
  • applicationId: ID
  • # Total CPU time consumed by the run, in seconds.
  • cpuRunTime: Float
  • # Timestamp the run finished. Empty while the run is still in progress (e.g.
  • # waiting on scheduled actions).
  • endTime: DateTime
  • # True when the run was triggered as a test (results are not persisted to
  • # records).
  • isTestRun: Boolean
  • # Ids of parent processes that triggered this run, ordered from outermost to
  • # innermost. Empty for top-level runs.
  • parentProcessIds: JSONString
  • # Id of the process.
  • processId: ID
  • # Identifier grouping all activity logs that share the same root process run,
  • # including chained sub-process runs.
  • runId: ID
  • # Timestamp the run started.
  • startTime: DateTime
  • # Field whose values are strictly defined with an enumeration of values.
  • status: ProcessStatusEnum
  • }

link Require by