AxKnowledgeBase_private_knowledge_graph_read
Run read-only Cypher MATCH/RETURN queries on the private knowledge graph to retrieve citable rows with aliased properties and explicit limits.
Instructions
Execute a read-only Cypher query against the organization's private knowledge graph and return the rows. The private counterpart of knowledge_graph_read: same query rules, same result shape, different graph. Only MATCH/RETURN is permitted.
get_knowledge_base_schema describes this graph too — every graph shares one schema — so call it first for the labels and property names, and follow the same rules knowledge_graph_read states: alias individual properties (RETURN e.name AS name, never a bare RETURN e), return the source paper on every query so the rows are citable, keep an explicit LIMIT on it, and never select an embedding_* property or bulk Passage.text.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | A read-only Cypher MATCH/RETURN query, aliasing specific properties | |
| params | No | Optional query parameters, for safe value injection |