SPARQL contains a number of clauses that can be used to specify default and named graphs in the query via IRIs.
:from
Used in queries, :from
denotes the default graph that the query operates on. Syntactically, the :from
clause can be an IRI or prefixed IRI, or a vector of one such IRI.
The example:
{:prefixes {:foaf "<http://xmlns.com/foaf/0.1/>"}
:select [?x]
:from ["<http://my-default-graph.org/>"]
:where [[?x :foaf/name "Armin Arlet"]]}
becomes:
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
SELECT ?x
FROM <http://my-default-graph.org/>
WHERE {
?x foaf:name "Armin Arlet"
}
:from-named
Used in queries, :from-named
denotes the named graphs that the query can operate on. Syntactically, the :from-named
clause is a vector of one or more IRIs or prefixed IRIs.
The example:
{:prefixes {:foaf "<http://xmlns.com/foaf/0.1/>"}
:select [?x]
:from-named ["<http://my-named-graph.org/v1>"
"<http://my-named-graph.org/v2>"]
:where [[:union [[:graph "<http://my-named-graph.org/v1>"
[[?x :foaf/name "Armin Arlet"]]]]
[[:graph "<http://my-named-graph.org/v2>"
[[?x :foaf/name "Armin Arlet"]]]]]]}
becomes:
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
SELECT ?x
FROM NAMED <http://my-named-graph.org/v1>
FROM NAMED <http://my-named-graph.org/v2>
WHERE {
{
GRAPH <http://my-named-graph.org/v1> {
?x foaf:name "Armin Arlet" .
}
}
UNION
{
GRAPH <http://my-named-graph.org/v2> {
?x foaf:name "Armin Arlet" .
}
}
}
:using
Used only in :delete
/:insert
updates, :using
specifies the graph used in the :where
clause. Syntactically, it consists of either:
[:named iri]
tuple, to specify a named graph.The example:
{:prefixes {:foaf "<http://xmlns.com/foaf/0.1/>"}
:delete [[:graph "<http://census.marley/data>"
[[?x :foaf/familyName "Brown"]]]]
:insert [[:graph "<http://census.marley/data>"
[[?x :foaf/familyName "Braun"]]]]
:using "<http://census.marley/data>"
:where [[?x :foaf/familyName "Brown"]]}
becomes:
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
DELETE {
GRAPH <http://census.marley/data> {
?x foaf:familyName "Brown" .
}
}
INSERT {
GRAPH <http://census.marley/data> {
?x foaf:familyName "Braun" .
}
}
USING <http://census.marley/data>
WHERE {
?x foaf:familyName "Brown" .
}
:with
Used only in :delete
/:insert
updates, :with
specifies the graph being mutated by the update; it is similar to :from
for queries. Syntactically, it consists an IRI or prefixed IRI that specifies the graph.
The example:
{:prefixes {:foaf "<http://xmlns.com/foaf/0.1/>"}
:with "<http://census.marley/data>"
:delete [[?x :foaf/familyName "Brown"]]
:insert [[?x :foaf/familyName "Braun"]]
:where [[?x :foaf/familyName "Brown"]]}
becomes:
PREFIX foaf: <http://xmlns.com/foaf/0.1/>
WITH <http://census.marley/data>
DELETE {
?x foaf:familyName "Brown" .
}
INSERT {
?x foaf:familyName "Braun" .
}
WHERE {
?x foaf:familyName "Brown" .
}
Can you improve this documentation?Edit on GitHub
cljdoc is a website building & hosting documentation for Clojure/Script libraries
× close