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.
- : Boolean!
- # Unique identifier of entity.
- : ID!
- # Specifies if the entity is considered deleted.
- : Boolean
- # Last modification time.
- : DateTime
- # Creation time.
- : DateTime
- # User who triggered the run, or empty for runs triggered by automation.
- : ClientEntity
- # Application context the run was triggered in.
- : ApplicationEntity
- # Process whose execution this log records.
- : ProcessEntity
- # Id of the actor.
- : ID
- # Id of the application.
- : ID!
- # Total CPU time consumed by the run, in seconds.
- : Float
- # Timestamp the run finished. Empty while the run is still in progress (e.g.
- # waiting on scheduled actions).
- : DateTime
- # True when the run was triggered as a test (results are not persisted to
- # records).
- : Boolean
- # Ids of parent processes that triggered this run, ordered from outermost to
- # innermost. Empty for top-level runs.
- : JSONString
- # Id of the process.
- : ID!
- # Identifier grouping all activity logs that share the same root process run,
- # including chained sub-process runs.
- : ID
- # Timestamp the run started.
- : DateTime!
- # Field whose values are strictly defined with an enumeration of values.
- : 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.
- (
- : ProcessActivityLogLineFilterInput,
- : [ProcessActivityLogLineOrderByInput!],
- : Boolean,
- : String,
- : String,
- : Int,
- : Int
- ): ProcessActivityLogLineEntityConnection
- # Name of the trigger record (extracted from the first log line) for display in
- # activity log lists.
- : String
- # Checks which permissions current user has on concrete entity instance.
- #
- # Arguments
- # permissions: [Not documented]
- (: [EntityPermsEnum!]!): [EntityPermsEnum!]!
- }