GraphStore#

class langchain_community.graphs.graph_store.GraphStore[source]#

Abstract class for graph operations.

Attributes

get_schema

Return the schema of the Graph database

get_structured_schema

Return the schema of the Graph database

Methods

__init__()

add_graph_documents(graph_documents[,Β ...])

Take GraphDocument as input as uses it to construct a graph.

query(query[,Β params])

Query the graph.

refresh_schema()

Refresh the graph schema information.

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

Take GraphDocument as input as uses it to construct a graph.

Parameters:
Return type:

None

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

Query the graph.

Parameters:
  • query (str)

  • params (dict)

Return type:

List[Dict[str, Any]]

abstract refresh_schema() β†’ None[source]#

Refresh the graph schema information.

Return type:

None