
Execute a SPARQL query and return results as a data frame
Source:R/extendr-wrappers.R
rdf_store_query.RdExecute a SPARQL query and return results as a data frame
Examples
store <- rdf_store_new()
rdf_store_load(store, '<http://example.org/s> <http://example.org/p> "v" .', "ntriples", NULL)
rdf_store_query(store, "SELECT * WHERE { ?s ?p ?o }")
#> o p s
#> 1 "v" <http://example.org/p> <http://example.org/s>