OBJECT

ProcessActivityLogEntity

link GraphQL Schema definition

  • type ProcessActivityLogEntity {
  • # Tells if the entity instance is protected against delete (Entities that need to
  • # be present in the system at any time). Delete action still may fail if entity is
  • # deletable, due some other additional validations.
  • isDeleteProtected: Boolean!
  • # Unique identifier of entity.
  • id: ID!
  • # Specifies if the entity is considered deleted.
  • isDeleted: Boolean
  • # Last modification time.
  • modified: DateTime
  • # Creation time.
  • created: DateTime
  • # User who triggered the run, or empty for runs triggered by automation.
  • actor: ClientEntity
  • # Application context the run was triggered in.
  • application: ApplicationEntity
  • # Process whose execution this log records.
  • process: ProcessEntity
  • # 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!
  • # Activity log lines describing each step taken in this run (visible only).
  • #
  • # Arguments
  • # filter: Filter ProcessActivityLogLine relations by target
  • # ProcessActivityLogLine attributes.
  • # orderBy: Order ProcessActivityLogLine relations by target
  • # ProcessActivityLogLine attributes.
  • # includeDeleted: Returns deleted target records as well. Default
  • # is true.
  • # before: Cursor until which to take entities to result set.
  • # after: Cursor after which to start taking entities to result
  • # set.
  • # first: Number of entities to return from beginning of the
  • # result set.
  • # last: Return only the "last" number of entities from result
  • # set.
  • lines(
  • filter: ProcessActivityLogLineFilterInput,
  • orderBy: [ProcessActivityLogLineOrderByInput!],
  • includeDeleted: Boolean,
  • before: String,
  • after: String,
  • first: Int,
  • last: Int
  • ): ProcessActivityLogLineEntityConnection
  • # Name of the trigger record (extracted from the first log line) for display in
  • # activity log lists.
  • recordName: String
  • # Checks which permissions current user has on concrete entity instance.
  • #
  • # Arguments
  • # permissions: [Not documented]
  • instancePermissions(permissions: [EntityPermsEnum!]!): [EntityPermsEnum!]!
  • }