OBJECT
SolutionEdge
A directed, typed edge between two nodes.
link GraphQL Schema definition
- type SolutionEdge {
- # Unique identifier of this edge within the canvas.
- : ID!
- # Custom name for the edge, if the user has set one.
- : String
- # Custom color for the edge, if the user has set one.
- : Int
- # Id of the node the edge starts from.
- : ID!
- # Id of the node the edge points to.
- : ID!
- # Type of connection the edge represents.
- : SolutionEdgeType!
- }