oxrdflib icon indicating copy to clipboard operation
oxrdflib copied to clipboard

Oxrdflib provides rdflib stores using pyoxigraph

Results 8 oxrdflib issues
Sort by recently updated
recently updated
newest added

Minimal working example: ```python from rdflib import Graph, Literal from rdflib.namespace import FOAF # graph = Graph() # works graph = Graph(store="Oxigraph") # does not work graph.add((Literal('1'), FOAF.name, Literal('2'))) ```...

Hi, I'm getting the expected result using `Dataset()` but not `Dataset(store="Oxigraph")`: ```python from rdflib import Dataset query = """ SELECT * WHERE {{ ?s ?p ?o . }} """ data="...

The query method of the `OxigraphStore` does not accept rdflib `Query` objects but only strings and otherwise fails with a `TypeError`. Example: ``` import rdflib from rdflib.plugins.sparql import prepareQuery from...

rdflib allows to register plugins for I/O and SPARQL processing. It might be nice to expose oxigraph features using it to allow rdflib users to opt-in to use some oxigraph...

When RDFlib graph is used as a temporal storage it seams that the backend leaks memory, the problem doesn't apear with the default RDFlib backend. Is there a proper way...

Thank you for the nice work. What is your roadmap? I am planning a saas using pyoxigraph?

[Issue first reported in #8] RDFLib default SPARQL query processor considers the `initBindings` parameter of the `Store`/`Graph` `query` method as a set of binds to do at the beginning of...

SPARQL updates requests are currently still executed ith rdflib runtime. It would be great to have them natively evaluated by Oxigraph just like SPARQL queries

enhancement