INPUT_OBJECT

UpdateSolutionInput

link GraphQL Schema definition

  • input UpdateSolutionInput {
  • # 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 of the solution.
  • description: String
  • # Name of the entity and its default text representation.
  • name: String
  • # Id of the owning user.
  • ownerId: ID
  • # Solution canvas as a JSON object conforming to the SolutionSchema type — nodes,
  • # edges and groups. Full structure:
  • # https://graphql.api-doc.pipelinersales.com/latest/graphql/space/solutionschema.doc.html
  • settings: SolutionSchemaJSONString
  • # Template this solution was created from, if any.
  • solutionTemplateId: ID
  • # Tags attached to the solution for organisation/filtering.
  • tags: [CreateTagRelationNoSolutionBackrefInput!]
  • }

link Require by