OBJECT

ProcessEntity

link GraphQL Schema definition

  • type ProcessEntity {
  • # 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
  • owner: ClientEntity
  • # Field whose values are strictly defined with an enumeration of values.
  • deactivationReason: ProcessDeactivationReasonEnum
  • # Multi-line text input field.
  • description: String
  • # Boolean value.
  • isEnabled: Boolean
  • # Datetime information.
  • lastSchemaChange: DateTime
  • # Datetime information.
  • lastStatusChange: DateTime
  • # Name of the entity and its default text representation.
  • name: String!
  • # Relation to single entity instance.
  • ownerId: ID!
  • settings: ProcessSchema
  • # Field whose values are strictly defined with an enumeration of values.
  • type: ProcessTypeEnum!
  • # Relations to ProcessActivityLogs.
  • #
  • # Arguments
  • # filter: Filter ProcessActivityLog relations by target
  • # ProcessActivityLog attributes.
  • # orderBy: Order ProcessActivityLog relations by target
  • # ProcessActivityLog 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.
  • activityLogs(
  • filter: ProcessActivityLogFilterInput,
  • orderBy: [ProcessActivityLogOrderByInput!],
  • includeDeleted: Boolean,
  • before: String,
  • after: String,
  • first: Int,
  • last: Int
  • ): ProcessActivityLogEntityConnection
  • lastProcessRun: DateTime
  • activity: ProcessTimelineResult!
  • status: ProcessStatusEnum
  • recordTriggerEvent: ProcessRecordTriggerEventEnum
  • triggerType: ProcessTriggerTypeEnum
  • triggerEntityName: EntityNameEnum
  • triggerEntityApiName: String
  • # Relations to CloudObjects.
  • documents: [CloudObjectRelationEntity!]
  • # Checks which permissions current user has on concrete entity instance.
  • #
  • # Arguments
  • # permissions: [Not documented]
  • instancePermissions(permissions: [EntityPermsEnum!]!): [EntityPermsEnum!]!
  • }