query-dba31b440340f20392e4c5b412ace94c
Qualifier ausgeben https://www.wikidata.org/wiki/Wikidata:SPARQL_tutorial#QualifiersQueries using qualifiers:
Use at
- https://query.wikidata.org/sparql
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX ps: <http://www.wikidata.org/prop/statement/>
PREFIX pq: <http://www.wikidata.org/prop/qualifier/>
PREFIX p: <http://www.wikidata.org/prop/>
SELECT ?sp ?t WHERE {
wd:Q13909 p:P26 ?s . # ?s is the the statement node
?s ps:P26 ?sp . # that simulates the predicate
?s pq:P580 ?t . # this is an attribute (a qualifier)
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?s")
v2("?sp"):::projected
v3("?t"):::projected
c1(["wd:Q13909"]):::iri
c1 --"p:P26"--> v1
v1 --"p:statement/P26"--> v2
v1 --"p:qualifier/P580"--> v3