langchain_community.graphs.graph_store.GraphStore

class langchain_community.graphs.graph_store.GraphStore[source]

图形操作抽象类。

属性

get_schema

返回图数据库的架构

get_structured_schema

返回图数据库的架构

方法

__init__()

add_graph_documents(graph_documents[, ...])

以GraphDocument作为输入,使用它来构建一个图。

query(query[, params])

查询图。

refresh_schema()

刷新图模式信息。

__init__()
abstract add_graph_documents(graph_documents: List[GraphDocument], include_source: bool = False) None[source]

以GraphDocument作为输入,使用它来构建一个图。

参数
  • graph_documents (List[GraphDocument]) –

  • include_source (bool) –

返回类型

None

abstract query(query: str, params: dict = {}) List[Dict[str, Any]][source]

查询图。

参数
  • query (str) –

  • params (dict) –

返回类型

List[Dict[str, Any]]

abstract refresh_schema() None[source]

刷新图模式信息。

返回类型

None