INPUT_OBJECT

UpdateProcessInput

link GraphQL Schema definition

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

link Require by