INTERFACE
SolutionTemplateNodeInterface
Common shape of every node in the template preview canvas.
link GraphQL Schema definition
- interface SolutionTemplateNodeInterface {
- # Unique identifier of this node within the template.
- : ID!
- # Node position on the canvas — the same position the node will have on the
- # created solution, so the wizard preview matches the install result.
- : Position!
- # Group this node belongs to, if any.
- : ID
- # Display name of the node in the preview and the wizard.
- : String!
- # Template-specific "What does this node do?" text shown on the node's wizard
- # step. Null for nodes without a dedicated step.
- : String
- }