query-4b109b99313fe103abf7b6e3bef08d6b
title:all statements qualified with P5136 SELECT ?item ?itemLabel ?prop ?propLabel ?value ?valueLabel ?statement WHERE { ?statement pq:P5136 ?value. ?item ?p ?statement. ?prop wikibase:claim ?p. SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } }
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX pq: <http://www.wikidata.org/prop/qualifier/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#title:all statements qualified with P5136
SELECT ?item ?itemLabel ?prop ?propLabel ?value ?valueLabel ?statement WHERE {
?statement pq:P5136 ?value.
?item ?p ?statement.
?prop wikibase:claim ?p.
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v3("?item"):::projected
v4("?p")
v5("?prop"):::projected
v1("?statement"):::projected
v2("?value"):::projected
c4(["bd:serviceParam"]):::iri
c6(["#91;AUTO_LANGUAGE#93;,en"]):::literal
v1 --"pq:P5136"--> v2
v3 -->v4--> v1
v5 --"wikibase:claim"--> v4
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c4 --"wikibase:language"--> c6
end