OBJECT

SolutionEdge

A directed, typed edge between two nodes.

link GraphQL Schema definition

  • type SolutionEdge {
  • # Unique identifier of this edge within the canvas.
  • id: ID!
  • # Custom name for the edge, if the user has set one.
  • name: String
  • # Custom color for the edge, if the user has set one.
  • color: Int
  • # Id of the node the edge starts from.
  • sourceNodeId: ID!
  • # Id of the node the edge points to.
  • targetNodeId: ID!
  • # Type of connection the edge represents.
  • type: SolutionEdgeType!
  • }