Retrieve the metadata and content of a node. Args: id: Node identifier. include_embedding: with/without embedding Returns: Dictionary of node fields, or None if not found.
(self, id: str, include_embedding: bool = False, **kwargs)
| 95 | # Graph Query & Reasoning |
| 96 | @abstractmethod |
| 97 | def get_node(self, id: str, include_embedding: bool = False, **kwargs) -> dict[str, Any] | None: |
| 98 | """ |
| 99 | Retrieve the metadata and content of a node. |
| 100 | Args: |
| 101 | id: Node identifier. |
| 102 | include_embedding: with/without embedding |
| 103 | Returns: |
| 104 | Dictionary of node fields, or None if not found. |
| 105 | """ |
| 106 | |
| 107 | @abstractmethod |
| 108 | def get_nodes( |
no outgoing calls