query-06889cfcc210e26790c793f40457d9db
Give me all triples in which the URI is the object!
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?subject ?subjectLabel ?predicate ?predicateLabel
WHERE {
?subject ?predicate wd:Q590267 .
SERVICE wikibase:label {bd:serviceParam wikibase:language "de, en"}
} ORDER BY ASC(?subjectLabel) ASC(?predicateLabel)
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v4("?predicate"):::projected
v2("?predicateLabel"):::projected
v3("?subject"):::projected
v1("?subjectLabel"):::projected
c3(["bd:serviceParam"]):::iri
c5(["de, en"]):::literal
c1(["wd:Q590267"]):::iri
v3 -->v4--> c1
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c3 --"wikibase:language"--> c5
end