query-7691df6b6b9657b17f21558807a366d1

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 ?country ?countryLabel ?numberLabel ?useLabel WHERE {
 ?country p:P2852 ?p2852stm .
 ?p2852stm ps:P2852 ?number . 
 OPTIONAL { ?p2852stm pq:P366 ?use }
 SERVICE wikibase:label { bd:serviceParam wikibase:language "en,fr,nl,es". }
} 
ORDER BY ?countryLabel ?numberLabel

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?country"):::projected v1("?countryLabel"):::projected v5("?number") v2("?numberLabel"):::projected v4("?p2852stm") v6("?use") c7(["en,fr,nl,es"]):::literal c5(["bd:serviceParam"]):::iri v3 --"p:P2852"--> v4 v4 --"p:statement/P2852"--> v5 subgraph optional0["(optional)"] style optional0 fill:#bbf,stroke-dasharray: 5 5; v4 -."p:qualifier/P366".-> v6 end subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c5 --"wikibase:language"--> c7 end