Skip to content

Instantly share code, notes, and snippets.

@sohamtriveous
Created September 8, 2023 07:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sohamtriveous/00c0674fc3a83c8486389e51df533c5d to your computer and use it in GitHub Desktop.
Save sohamtriveous/00c0674fc3a83c8486389e51df533c5d to your computer and use it in GitHub Desktop.
example gist
{
"name": "Demo",
"active": true,
"staticData": {},
"settings": {},
"nodes": [
{
"id": "manual-trigger",
"name": "Manual",
"type": "manual",
"typeVersion": "1",
"executeOnce": true,
"position": [],
"parameters": {
"manual": {
}
}
},
{
"id": "wait-node",
"name": "Wait",
"type": "wait",
"typeVersion": "1",
"executeOnce": true,
"position": [],
"parameters": {
"wait": {
"type": "INTERVAL",
"intervalUnit": "SECONDS",
"intervalAmount": 2
}
}
},
{
"id": "set-node",
"name": "Set",
"type": "set",
"typeVersion": "1",
"executeOnce": true,
"position": [],
"parameters": {
"set": {
"keepOnlySet": "true",
"useDotNotation": "true",
"values": {
"bool": [
{
"name": "bool",
"value": "true"
}
],
"string": [
{
"name": "stri",
"value": "string"
}
],
"number": [
{
"name": "num",
"value": "10"
}
]
}
}
}
},
{
"id": "autoqc-node",
"name": "AutoQC",
"type": "autoqc",
"typeVersion": "1",
"executeOnce": true,
"position": [],
"parameters": {
}
}
],
"connections": {
"manual-trigger": {
"main": [
[
{
"node": "set-node",
"type": "main",
"output": 0
}
]
]
},
"set-node": {
"main": [
[
{
"type": "main",
"output": 0,
"node": "wait-node"
}
]
]
},
"wait-node": {
"main": [
[
{
"type": "main",
"output": 0,
"node": "autoqc-node"
}
]
]
},
"autoqc-node": {
"main": [
[
]
]
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment