Kapitel 13/Tutorial.md aktualisiert

This commit is contained in:
2025-08-28 18:48:38 +00:00
parent 5a44116327
commit 96d7b0c362

View File

@@ -378,10 +378,18 @@ Im Ergebnis findest du im Feld `data[0].id` deine **User-ID** (z. B. `123456789`
# Set Node Felder übernehmen # Set Node Felder übernehmen
file_exists →
file_exists → ```json {{ JSON.parse($json.stdout).file_exists }} ``` ```json
non_empty → ```json {{ JSON.parse($json.stdout).non_empty }} ``` {{ JSON.parse($json.stdout).file_exists }}
vods → ```json {{ JSON.parse($json.stdout).vods }} ``` ```
non_empty →
```json
{{ JSON.parse($json.stdout).non_empty }}
```
vods →
```json
{{ JSON.parse($json.stdout).vods }}
```
# WICHTIG # WICHTIG
@@ -391,20 +399,15 @@ vods → ```json {{ JSON.parse($json.stdout).vods }} ```
### 6. State ermitteln (Set-Node EIN Feld) ### 6. State ermitteln (Set-Node EIN Feld)
# State ermitteln # State ermitteln
state →
```json
state → ```json {{ $json.file_exists === false {{ $json.file_exists === false
? 'CREATE_AND_DOWNLOAD' ? 'CREATE_AND_DOWNLOAD'
: ($json.non_empty === false : ($json.non_empty === false
? 'APPEND_AND_DOWNLOAD' ? 'APPEND_AND_DOWNLOAD'
: 'NEED_CHECK') }} : 'NEED_CHECK') }}
``` ```
# WICHTIG # WICHTIG
- Aktiviere die Option: Include Other Input Fields → ALL. - Aktiviere die Option: Include Other Input Fields → ALL.