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: 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: Position!
  • # Group this node belongs to, if any.
  • groupId: ID
  • # Display name of the node in the preview and the wizard.
  • name: String!
  • # Template-specific "What does this node do?" text shown on the node's wizard
  • # step. Null for nodes without a dedicated step.
  • description: String
  • }