OBJECT

ApprovalProcessActivityLogLineEntity

link GraphQL Schema definition

  • type ApprovalProcessActivityLogLineEntity {
  • # Human-readable rendering of the log line, prefixed with the line's timestamp and
  • # (when applicable) the parent record id.
  • formattedText: 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.
  • 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
  • # Approval this log line belongs to.
  • approval: ApprovalEntity
  • # Id of the approval.
  • approvalId: ID!
  • # Typed JSON payload describing the approval step (e.g. approver decisions,
  • # comments).
  • data: JSONString!
  • # Timestamp the step represented by this line was executed. Empty for scheduled
  • # steps that have not yet run.
  • executedAt: DateTime
  • # True when the line is shown in the activity log UI; false for internal-only
  • # lines.
  • isVisible: Boolean
  • # Position of the line within its approval run.
  • sortOrder: Int!
  • # Field whose values are strictly defined with an enumeration of values.
  • status: ProcessStatusEnum
  • # Checks which permissions current user has on concrete entity instance.
  • #
  • # Arguments
  • # permissions: [Not documented]
  • instancePermissions(permissions: [EntityPermsEnum!]!): [EntityPermsEnum!]!
  • }