BusinessRuleEdge
Directed connection between business rule nodes that defines data flow and execution sequence.
Edges establish the pathway for data transformation as it moves through the business rule graph, ensuring proper sequencing of operations and maintaining data integrity throughout the processing pipeline. Most commonly, graphs contain an input node connected to a decision table node, which then connects to an output node.
type BusinessRuleEdge {
id: ID!
sourceId: ID!
targetId: ID!
type: String!
}
Fields
BusinessRuleEdge.id
● ID!
non-null scalar
Unique identifier for this edge connection within the business rule graph
BusinessRuleEdge.sourceId
● ID!
non-null scalar
Identifier of the source node where data originates and flows from
BusinessRuleEdge.targetId
● ID!
non-null scalar
Identifier of the target node where data flows to and gets processed
BusinessRuleEdge.type
● String!
non-null scalar
Connection type classifier, currently supports 'edge' for standard data flow connections
Member Of
BusinessRule
object