Appearance
BPMN Panel API / Panel Types / Edge
Type Alias: Edge
ts
type Edge = {
request?: {
linkName?: string;
};
data?: Record<string, any>;
bpmnType: "bpmn:SequenceFlow";
};Defined in: features/panels/variants/bpmn/types/panel/graph/edge/index.ts:42
Declared configuration shape for graph.edges[].
The current existing-edge renderer does not consume graph.edges[]. Existing connectors are built directly from backend links, and their sequence/conditional type is inferred from backend connectorType and linkName. These fields therefore have no supported runtime effect.
Use ToolbarEdgeItem for connector creation configuration.
Properties
| Property | Type | Description |
|---|---|---|
{ | Declared request configuration ignored by the current existing-edge renderer. | |
|
| Declared link name ignored by the current existing-edge renderer. |
| Declared metadata ignored by the current existing-edge renderer. | |
| Declared BPMN type of the edge. The current existing-edge renderer does not consume |