import type * as HydraDB from "../index.js"; /** * Graph is the unified graph plane (PRO-1618): query_paths and * chunk_relations consolidated into one ordered paths[] list, with each * path carrying the chunk ids it supports so the caller no longer joins * against chunk_id_to_group_ids. Populated whenever graph_context is on, * on BOTH layouts; graph_context stays populated beside it. */ export interface SearchGraphPlane { paths?: HydraDB.SearchGraphPath[]; }