OBJECT
SolutionSchema
The saved Solution canvas: nodes, edges and groups. Mirrors ProcessEntity.settings.
link GraphQL Schema definition
- type SolutionSchema {
- # Nodes placed on the canvas.
- : [SolutionNodeInterface!]!
- # Typed edges between nodes.
- : [SolutionEdge!]!
- # Visual groups bundling nodes.
- : [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.
- : [UUID!]!
- }