OBJECT

SolutionSchema

The saved Solution canvas: nodes, edges and groups. Mirrors ProcessEntity.settings.

link GraphQL Schema definition

  • type SolutionSchema {
  • # Nodes placed on the canvas.
  • nodes: [SolutionNodeInterface!]!
  • # Typed edges between nodes.
  • edges: [SolutionEdge!]!
  • # Visual groups bundling nodes.
  • groups: [SolutionGroup!]!
  • # Records the user explicitly removed from the canvas. The scan never auto-adds
  • # them again — they only return through an explicit pick (scan addRecordIds),
  • # which also drops them from this list.
  • removedRecordIds: [UUID!]!
  • }