OBJECT
ProcessActivityLogLineEntity
link GraphQL Schema definition
- type ProcessActivityLogLineEntity {
- # Human-readable rendering of the log line, prefixed with the line's timestamp and
- # (when applicable) the parent record id.
- : String!
- # 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
- # Activity log run this line belongs to.
- : ProcessActivityLogEntity
- # Timestamp the step represented by this line was executed. Empty for scheduled
- # steps that have not yet run.
- : DateTime
- # True when the line is shown in the activity log UI; false for internal-only
- # lines.
- : Boolean
- # Id of the activity log.
- : ID!
- # Position of the line within its log run.
- : Int!
- # Field whose values are strictly defined with an enumeration of values.
- : ProcessStatusEnum
- # Checks which permissions current user has on concrete entity instance.
- #
- # Arguments
- # permissions: [Not documented]
- (: [EntityPermsEnum!]!): [EntityPermsEnum!]!
- }