pub async fn load_jsonl(
db: &Omnigraph,
data: &str,
mode: LoadMode,
) -> Result<LoadResult>Expand description
Convenience: load JSONL data onto the database handle’s active branch
(main when unbound). Equivalent to db.load(active_branch, data, mode);
use Omnigraph::load/load_as directly when targeting an explicit branch
or when fork-from-base semantics are needed.