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 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:
graph_documents (List[GraphDocument]) β
include_source (bool) β
- Return type:
None