bankai/daemon_store/queries

Task read-only queries, search, analytics, and projections.

Queries derived state from Mnesia and AaronDB projections.

Values

pub fn analytics(workspace: String) -> Result(json.Json, String)
pub fn blocked_tasks(
  workspace: String,
  rest: List(String),
) -> Result(json.Json, String)
pub fn count_tasks(
  workspace: String,
  rest: List(String),
) -> Result(json.Json, String)
pub fn cycle_edges(
  workspace: String,
) -> Result(json.Json, String)
pub fn duplicate_pairs(
  workspace: String,
) -> Result(json.Json, String)
pub fn epic(
  workspace: String,
  id: String,
) -> Result(json.Json, String)
pub fn history(
  workspace: String,
  id: String,
) -> Result(json.Json, String)
pub fn inspect(
  workspace: String,
  hash: String,
) -> Result(json.Json, String)
pub fn list_tasks(
  workspace: String,
  rest: List(String),
) -> Result(json.Json, String)
pub fn prime_query(
  workspace: String,
  query: String,
) -> Result(json.Json, String)
pub fn ready_tasks(
  workspace: String,
  rest: List(String),
) -> Result(json.Json, String)
pub fn search(
  workspace: String,
  rest: List(String),
) -> Result(json.Json, String)
pub fn semantic_duplicates(
  workspace: String,
  rest: List(String),
) -> Result(json.Json, String)
pub fn show_task(
  workspace: String,
  id: String,
) -> Result(json.Json, String)
pub fn stale_tasks(
  workspace: String,
  rest: List(String),
) -> Result(json.Json, String)
pub fn warm_vector_projection(
  workspace: String,
) -> Result(Int, String)

Warm the managed vector projection at daemon boot: the acceptor process becomes the ETS owner, so the HNSW graph persists across connection handlers instead of being rebuilt (and destroyed) per request.

Search Document