pub fn create_custom_node(
name: String,
query_defs: Vec<Option<String>>,
output_def: String,
type_name: String,
output_tables: Vec<String>,
) -> Item
Expand description
Returns a custom node that executes a given function When registering a custom node in the SDK, you provide an in-language function and tell chidori to register that function under the given “type_name”. This function executed is then executed in the graph when referenced by this “type_name” parameter