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).
- : String
- # Unique identifier of entity.
- : ID!
- # Last modification time.
- : DateTime
- # Creation time.
- : DateTime
- # Free-text description of the solution.
- : String
- # Name of the entity and its default text representation.
- : String
- # Id of the owning user.
- : 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
- : SolutionSchemaJSONString
- # Template this solution was created from, if any.
- : ID
- # Tags attached to the solution for organisation/filtering.
- : [CreateTagRelationNoSolutionBackrefInput!]
- }