-
- Parameters
-
- {Object.keys(params).length === 0 ? (
-
No parameters.
- ) : (
-
- {JSON.stringify(params, null, 2)}
-
- )}
- {Object.keys(result).length > 0 ? (
-
- result
-
- {JSON.stringify(result, null, 2)}
-
-
- ) : null}
-
-
- Mapping
-
-
- Input ({inputTables.length})
-
- {inputTables.length === 0 ? (
-
No tables.
- ) : (
-
- {inputTables.map((t, i) => (
- -
- {String(t.source ?? "")} → {String(t.destination ?? "")}
-
- ))}
-
- )}
-
- Output ({outputTables.length})
-
- {outputTables.length === 0 ? (
-
No tables.
- ) : (
-
- {outputTables.map((t, i) => (
- -
- {String(t.source ?? "")} → {String(t.destination ?? "")}
-
- ))}
-
- )}
-