INPUT_OBJECT

UpdateApprovalProcessInput

link GraphQL Schema definition

  • input UpdateApprovalProcessInput {
  • # 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
  • # Free-text description shown alongside the approval process.
  • description: String
  • # When true, the approval process actively raises approvals on matching record
  • # events; when false, the process is paused.
  • isEnabled: Boolean
  • # Timestamp of the most recent change to settings.
  • lastSchemaChange: DateTime
  • # Timestamp of the most recent change to is_enabled.
  • lastStatusChange: DateTime
  • # Name of the entity and its default text representation.
  • name: String
  • # Id of the owning user.
  • ownerId: ID
  • # Approval process schema as a JSON object conforming to the ApprovalProcessSchema
  • # type — trigger, filter, approver settings, and approve/reject nodes. Validated
  • # on write. Full structure:
  • # https://graphql.api-doc.pipelinersales.com/latest/graphql/space/approvalprocessschema.doc.html
  • settings: JSONString
  • # Files attached to the approval process (e.g. process documentation).
  • documents: [CreateCloudObjectRelationNoBackrefInput!]
  • }

link Require by