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.
- : Boolean!
- # Unique identifier of entity.
- : ID!
- # Specifies if the entity is considered deleted.
- : Boolean
- # Last modification time.
- : DateTime
- # Creation time.
- : DateTime
- # User who owns the process.
- : ClientEntity
- # AI assistant conversation associated with the process (e.g. records of AI-driven
- # schema generation).
- : [AiConversationItem!]
- # Field whose values are strictly defined with an enumeration of values.
- : ProcessDeactivationReasonEnum
- # Free-text description shown alongside the process.
- : String
- # When true, the process actively responds to its trigger; when false, the process
- # is paused. Toggle via enable/disable mutations.
- : Boolean
- # Timestamp of the most recent change to settings.
- : DateTime
- # Timestamp of the most recent change to is_enabled.
- : DateTime
- # Name of the entity and its default text representation.
- : String!
- # Id of the owning user.
- : ID!
- : ProcessSchema
- # Field whose values are strictly defined with an enumeration of values.
- : ProcessTypeEnum!
- # Activity log runs (one per process execution) recorded for this process.
- #
- # 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.
- (
- : ProcessActivityLogFilterInput,
- : [ProcessActivityLogOrderByInput!],
- : Boolean,
- : String,
- : String,
- : Int,
- : Int
- ): ProcessActivityLogEntityConnection
- # Tags attached to the process for organisation/filtering.
- #
- # Arguments
- # filter: Filter Tag relations by target Tag attributes.
- # filterEdge: Filter TagRelation relations by edge (relation)
- # TagRelation attributes.
- # orderBy: Order Tag relations by target Tag 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.
- (
- : TagFilterInput,
- : TagRelationFilterInput,
- : [TagOrderByInput!],
- : Boolean,
- : String,
- : String,
- : Int,
- : Int
- ): TagRelationEntityConnection
- # Timestamp of the most recent execution of this process. Empty when never run.
- : DateTime
- # Activity timeline for the last 24 hours showing per-hour counts of successful,
- # warning, and error process runs.
- : ProcessTimelineResult!
- # Aggregate status derived from the most recent runs in the last 24 hours:
- # NoActivity, Running, Success, Warning, or Error.
- : ProcessStatusEnum
- # For record-based triggers, which record-lifecycle event fires the process
- # (Create, Update, Delete). Empty for non-record triggers (schedule, webhook,
- # ...).
- : ProcessRecordTriggerEventEnum
- # Kind of trigger configured for the process (RecordTrigger, ScheduleTrigger,
- # WebhookTrigger, ...). Determines which other trigger_* fields apply.
- : ProcessTriggerTypeEnum
- # For record-based triggers, the entity whose records fire the process (e.g.
- # "Lead"). Empty for non-record triggers.
- : EntityNameEnum
- # API name of the trigger entity (useful for custom entities where this differs
- # from trigger_entity_name). Empty for non-record triggers.
- : String
- # Files attached to the process (e.g. process documentation).
- : [CloudObjectRelationEntity!]
- # Checks which permissions current user has on concrete entity instance.
- #
- # Arguments
- # permissions: [Not documented]
- (: [EntityPermsEnum!]!): [EntityPermsEnum!]!
- }
link Require by
- CloudObjectRelationEntitynull
- CreateProcessFromTemplatePayloadnull
- CreateProcessPayloadnull
- DeleteProcessPayloadnull
- ProcessActivityLogEntitynull
- ProcessEntityEdgeA Relay edge containing a `ProcessEntity` and its cursor.
- ProcessRepositorynull
- ProcessScheduledActionEntitynull
- StepChecklistEntitynull
- TagRelationEntitynull
- UpdateProcessPayloadnull