query-dee6c89fea2e28510d01ae4e18e32272

rq turtle/ttl

Countries of Europe by area and it seems to have all the required properties and yet it does not appear in the results. The query I tried is: (Q142)France I'm trying to get a list of countries in Europe by area. It seems pretty straightforward, but for some reason I only get 11 results. I manually checked

Use at

PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
select ?country ?countryLabel ?area 
{ 
  ?country wdt:P31 wd:Q6256 .
  ?country wdt:P30 wd:Q46 .
  ?country wdt:P2046 ?area . 
  service wikibase:label { bd:serviceParam wikibase:language "ro,en" } 
} order by desc(?area)

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?area"):::projected v2("?country"):::projected c9(["ro,en"]):::literal c7(["bd:serviceParam"]):::iri c2(["wd:Q6256"]):::iri c4(["wd:Q46"]):::iri v2 --"wdt:P31"--> c2 v2 --"wdt:P30"--> c4 v2 --"wdt:P2046"--> v1 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c7 --"wikibase:language"--> c9 end