query-d70cfd6dd0459c58d7979f998ff47094

rq turtle/ttl

TODO

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX ps: <http://www.wikidata.org/prop/statement/>
PREFIX p: <http://www.wikidata.org/prop/>
PREFIX bd: <http://www.bigdata.com/rdf#>
SELECT ?country ?countryLabel WHERE {
  ?country p:P31 [ps:P31 wd:Q6256].
  SERVICE wikibase:label { bd:serviceParam wikibase:language "en". }
  } order by ?countryLabel

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v2("?country"):::projected v1("?countryLabel"):::projected a1((" ")) c5(["bd:serviceParam"]):::iri c7(["en"]):::literal c2(["wd:Q6256"]):::iri a1 --"p:statement/P31"--> c2 v2 --"p:P31"--> a1 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c5 --"wikibase:language"--> c7 end