langchain_community.graphs.graph_document.Node

langchain_community.graphs.graph_document.Node[source]

继承自: Serializable

代表具有相关属性的图节点。

id

节点的一个唯一标识符。

类型

Union[str, int]

type

节点的类型或标签,默认为“Node”。

类型

str

properties

与节点相关联的附加属性和元数据。

类型

dict

参数 id: Union[str, int] [必需]
参数 properties: dict [可选]
参数 type: str = 'Node'

使用 Node 的示例