jellyflow-runtime 0.2.0

Headless store, rules, schema, profile, and change pipeline for Jellyflow.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
mod common;
mod connect;
mod insert;
mod reconnect;
mod typed;

pub use connect::{plan_connect, plan_connect_with_mode, plan_connect_with_mode_and_policy};
pub use insert::{
    plan_connect_by_inserting_node, plan_connect_by_inserting_node_with_policy,
    plan_split_edge_by_inserting_node,
};
pub use reconnect::{
    plan_reconnect_edge, plan_reconnect_edge_with_mode, plan_reconnect_edge_with_mode_and_policy,
};
pub use typed::{
    plan_connect_typed, plan_connect_typed_with_mode_and_policy, plan_connect_typed_with_policy,
};