INTERFACE

SolutionNodeInterface

Common shape of every node placed on the canvas.

link GraphQL Schema definition

  • interface SolutionNodeInterface {
  • # Unique identifier of this node within the canvas.
  • id: ID!
  • # Node position on the canvas.
  • position: Position!
  • # Node size in pixels, set by resizing the node on the canvas (PLW-40154). Null
  • # means the default size.
  • size: Size
  • # Group this node belongs to, if any.
  • groupId: ID
  • # Custom name for the node, if the user has set one.
  • name: String
  • # Whether the node was added manually or by the auto-add scan engine.
  • origin: SolutionNodeOrigin!
  • }