Skip to content

Latest commit

 

History

History
51 lines (49 loc) · 1.2 KB

File metadata and controls

51 lines (49 loc) · 1.2 KB

Multiple Inputs One Output

%%{init: 'themeVariables': { 'fontFamily': 'Fira Code, monospace' }}%%
graph TD;
inputOne[/"input <br> id='inputOne'"/]:::input -- "partOne->partOne" --> output1{{"output <br> id='output-1'"}}:::output
inputTwo[/"input <br> id='inputTwo'"/]:::input -- "partTwo->partTwo" --> output1{{"output <br> id='output-1'"}}:::output
classDef default stroke:#ffab40,fill:#fff2ccff,color:#000
classDef input stroke:#3c78d8,fill:#c9daf8ff,color:#000
classDef output stroke:#38761d,fill:#b6d7a8ff,color:#000
classDef passthrough stroke:#a64d79,fill:#ead1dcff,color:#000
classDef slot stroke:#a64d79,fill:#ead1dcff,color:#000
classDef config stroke:#a64d79,fill:#ead1dcff,color:#000
classDef secrets stroke:#db4437,fill:#f4cccc,color:#000
classDef slotted stroke:#a64d79
Loading
{
	"title": "Multiple Inputs One Output",
	"edges": [
		{
			"from": "inputOne",
			"to": "output-1",
			"out": "partOne",
			"in": "partOne"
		},
		{
			"from": "inputTwo",
			"to": "output-1",
			"out": "partTwo",
			"in": "partTwo"
		}
	],
	"nodes": [
		{
			"id": "output-1",
			"type": "output"
		},
		{
			"id": "inputOne",
			"type": "input"
		},
		{
			"id": "inputTwo",
			"type": "input"
		}
	],
	"kits": []
}