The Node Editor
The Node Editor can be opened by double-clicking on any node from the sidebar, from within the graph or subgraphs.
- The Mapping Grid and Join Tab is where you'll be able to transform, edit, and parse your data. These two areas combined define not only the current node structure but what source will be used to populate the current node and the mapping of that data to each column. Some of the things you can do include:
- General transformations
- Bulk Data Editing
- Testing
- JSON and XML transformations
- Config
- Node Properties - Review and edit your nodes Storage Location, Type, and other information.
- Options - The options available will depend on the node type. To see potential options, review Node Config Options .
- Column Editor - Select a column to add transforms. You can select multiple columns to bulk edit the data.
- Testing- Test your node to assess the data quality.
- Results and Data Pane - This section provides the user with feedback as to exactly what SQL was queried and the ability to preview the data results within the application.
Node Actions
A node has several different execution modes that can be executed on a single node. They are in the Results and Data Pane.
Validate SQL
Validate SQL constructs a simple SELECT
statement combining transformations and source mapping metadata with the JOIN
string defined in the join tab. The SELECT
statement is wrapped with EXPLAIN USING TEXT
. EXPLAIN
compiles the SQL statement, but does not execute it. This removes any complexity of the underlying template and only validates the user inputted transformations and joins.
Create
Create renders and executes all SQL stages of the create template defined in the Node Type definition.