Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[rdf4j-dev] Projecting a graph

Hi,

I’ve come upon a requirement for “projecting” a graph, so that all operations like get/delete/insert/update/query run against a single graph in the store without them knowing. 

Example.

<http://example1> rdf:type rdfs:Resource <http://graph1>

When you specify <http://graph1> as the current graph, then getStatement(null, null, null) will return "<http://example1> rdf:type rdfs:Resource” without the graph part.

Back to the top