节点#
- class langchain_neo4j.graphs.graph_document.Node[source]#
基础类:
Serializable
表示图中具有相关属性的节点。
- id#
节点的唯一标识符。
- Type:
Union[str, int]
- type#
节点的类型或标签,默认为“Node”。
- Type:
字符串
- properties#
与节点相关的附加属性和元数据。
- Type:
字典
- param id: str | int [Required]#
- param properties: dict [Optional]#
- param type: str = 'Node'#
使用 Node 的示例