MCPcopy Create free account
hub / github.com/ScriptedAlchemy/tracedecay / node_source_rows

Function node_source_rows

src/dashboard/lcm_queries.rs:400–413  ·  view source on GitHub ↗
(
    conn: &libsql::Connection,
    node_id: &str,
)

Source from the content-addressed store, hash-verified

398}
399
400pub(crate) async fn node_source_rows(
401 conn: &libsql::Connection,
402 node_id: &str,
403) -> Result<Vec<Value>, String> {
404 query_rows(
405 conn,
406 "SELECT source_kind, source_id
407 FROM lcm_summary_sources
408 WHERE node_id = ?1
409 ORDER BY ordinal ASC",
410 libsql::params![node_id.to_string()],
411 )
412 .await
413}
414
415pub(crate) async fn child_summary_nodes(
416 conn: &libsql::Connection,

Callers 1

node_payloadFunction · 0.85

Calls 1

query_rowsFunction · 0.85

Tested by

no test coverage detected