OBJECT

SolutionTemplateEdge

A directed, typed edge between two template nodes.

link GraphQL Schema definition

  • type SolutionTemplateEdge {
  • # Unique identifier of this edge within the template.
  • id: ID!
  • # Edge label, if the template defines one.
  • name: String
  • # 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!
  • }