INPUT_OBJECT
CreateProcessTemplateInput
link GraphQL Schema definition
- input CreateProcessTemplateInput {
- # 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
- # Last modification time.
- : DateTime
- # Creation time.
- : DateTime
- # Free-text description of what the template does.
- : String
- # True when the platform recommends this template (highlighted in the template
- # gallery).
- : Boolean
- # Name of the entity and its default text representation.
- : String!
- # Process schema shipped by the template, as a JSON object conforming to the
- # ProcessSchema type (trigger, nodes, settings). Validated on write. Full
- # structure:
- # https://graphql.api-doc.pipelinersales.com/latest/graphql/space/processschema.doc.html
- : ProcessSchemaJSONString!
- # Files attached to the template (e.g. reference documents, screenshots).
- : [CreateCloudObjectRelationNoBackrefInput!]
- }