INPUT_OBJECT
UpdateProcessInput
link GraphQL Schema definition
- input UpdateProcessInput {
- : String
- # Unique identifier of entity.
- : ID!
- # Last modification time.
- : DateTime
- # Creation time.
- : DateTime
- # AI assistant conversation associated with the process (e.g. records of AI-driven
- # schema generation).
- : [AiConversationItemParams!]
- # Free-text description shown alongside the process.
- : String
- # Name of the entity and its default text representation.
- : String
- # Id of the owning user.
- : ID
- # Process schema (trigger, nodes, settings). Stored as a JSON document; modified
- # via the process builder.
- : ProcessSchemaJSONString
- # Field whose values are strictly defined with an enumeration of values.
- : ProcessTypeEnum
- # Tags attached to the process for organisation/filtering.
- : [CreateTagRelationNoProcessBackrefInput!]
- # Files attached to the process (e.g. process documentation).
- : [CreateCloudObjectRelationNoBackrefInput!]
- }