图存储#
- class langchain_community.graphs.graph_store.GraphStore[source]#
用于图形操作的抽象类。
属性
get_schema
返回图数据库的模式
get_structured_schema
返回图数据库的模式
方法
add_graph_documents
(graph_documents[, ...])将GraphDocument作为输入并使用它来构建图。
query
(query[, params])查询图。
刷新图模式信息。
- abstract add_graph_documents(graph_documents: List[GraphDocument], include_source: bool = False) None [source]#
将GraphDocument作为输入并使用它来构建图形。
- Parameters:
graph_documents (列表[GraphDocument])
include_source (bool)
- Return type:
无