query-bc087e5f8f1b8ba1b13ebc0ea9538f5f

rq turtle/ttl

TODO

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX ps: <http://www.wikidata.org/prop/statement/>
PREFIX pq: <http://www.wikidata.org/prop/qualifier/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?item ?itemLabel ?ID ?ID_no
WHERE 
{
  ?item p:P2002 ?stat. 
  ?stat ps:P2002 ?ID.
  ?stat pq:P6552 ?ID_no.      
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
} limit 10

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?ID"):::projected v4("?ID_no"):::projected v1("?item"):::projected v2("?stat") c5(["bd:serviceParam"]):::iri c7(["#91;AUTO_LANGUAGE#93;,en"]):::literal v1 --"p:P2002"--> v2 v2 --"p:statement/P2002"--> v3 v2 --"p:qualifier/P6552"--> v4 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c5 --"wikibase:language"--> c7 end