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).
  • 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 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
  • 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