INPUT_OBJECT
UpdateProcessInput
link GraphQL Schema definition
- input UpdateProcessInput {
- # Optional client-supplied identifier passed on a mutation input and echoed back
- # unchanged on its payload, so a client can correlate the response with its
- # request (Relay convention).
- : 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 as a JSON object conforming to the ProcessSchema type — trigger,
- # nodes and settings. Built via the process builder; validated on write. Full
- # structure:
- # https://graphql.api-doc.pipelinersales.com/latest/graphql/space/processschema.doc.html
- : 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!]
- }