You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
langchain/libs/community/langchain_community/graphs
Guilherme Zanotelli f931a9ce60
community[patch]: Pass kwargs to SPARQLStore from RdfGraph (#20385)
This introduces `store_kwargs` which behaves similarly to `graph_kwargs`
on the `RdfGraph` object, which will enable users to pass `headers` and
other arguments to the underlying `SPARQLStore` object. I have also made
a [PR in `rdflib` to support passing
`default_graph`](https://github.com/RDFLib/rdflib/pull/2761).

Example usage:
```python
from langchain_community.graphs import RdfGraph

graph = RdfGraph(
    query_endpoint="http://localhost/sparql",
    standard="rdf",
    store_kwargs=dict(
        default_graph="http://example.com/mygraph"
    )
)
```

<!--If no one reviews your PR within a few days, please @-mention one of
baskaryan, efriis, eyurtsev, hwchase17.-->

---------

Co-authored-by: Bagatur <22008038+baskaryan@users.noreply.github.com>
Co-authored-by: Bagatur <baskaryan@gmail.com>
5 months ago
..
__init__.py community[patch]: import flattening fix (#20110) 5 months ago
age_graph.py community[minor]: add graph store implementation for apache age (#20582) 5 months ago
arangodb_graph.py community[major], core[patch], langchain[patch], experimental[patch]: Create langchain-community (#14463) 10 months ago
falkordb_graph.py community: switch to falkordb python client (#20229) 6 months ago
graph_document.py community[major], core[patch], langchain[patch], experimental[patch]: Create langchain-community (#14463) 10 months ago
graph_store.py community[major], core[patch], langchain[patch], experimental[patch]: Create langchain-community (#14463) 10 months ago
gremlin_graph.py community[minor], langchain[minor], docs: Gremlin Graph Store and QA Chain (#17683) 7 months ago
hugegraph.py community[major], core[patch], langchain[patch], experimental[patch]: Create langchain-community (#14463) 10 months ago
kuzu_graph.py community[patch]: Resolve KuzuQAChain API Changes (#16885) 7 months ago
memgraph_graph.py community[patch]: Update Memgraph support (#16360) 8 months ago
nebula_graph.py community[major], core[patch], langchain[patch], experimental[patch]: Create langchain-community (#14463) 10 months ago
neo4j_graph.py community[patch]: Add driver config param for neo4j graph (#20772) 5 months ago
neptune_graph.py community[minor]: add neptune analytics graph (#20047) 6 months ago
neptune_rdf_graph.py community[minor]: Improvements for NeptuneRdfGraph, Improve discovery of graph schema using database statistics (#19546) 6 months ago
networkx_graph.py community[patch]: docstrings update (#20301) 5 months ago
ontotext_graphdb_graph.py langchain[patch], community[patch]: Fixes in the Ontotext GraphDB Graph and QA Chain (#17239) 8 months ago
rdf_graph.py community[patch]: Pass kwargs to SPARQLStore from RdfGraph (#20385) 5 months ago
tigergraph_graph.py community: `tigergraph` fixes (#20034) 5 months ago