query-3fbf7c6ea0325afa1642fca194e89cbc
Gib mir alle Tripel mit der RDA als Objekt
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 ?subjectLabel ?subject ?predicateLabel ?predicate
WHERE {
?subject ?predicate wd:Q25338539 .
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],de,en" }
} ORDER BY ?subjectLabel ?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
c1(["wd:Q25338539"]):::iri
c3(["bd:serviceParam"]):::iri
c5(["#91;AUTO_LANGUAGE#93;,de,en"]):::literal
v3 -->v4--> c1
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c3 --"wikibase:language"--> c5
end