query-21231a1b6179ffe8679d802ddaf8b0b1

rq turtle/ttl

Países de América

Countries of America

PREFIX schema: http://schema.org/

SELECT ?item ?itemLabel ?linkcount WHERE { ?item wdt:P31 wd:Q6256 . ?item wdt:P30 ?continente .

VALUES ?continente {wd:Q49 wd:Q27611 wd:Q18}

SERVICE wikibase:label { bd:serviceParam wikibase:language "es, fr" }
}

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#>
# Países de América
# Countries of America

PREFIX schema: <http://schema.org/>

SELECT ?item ?itemLabel ?linkcount WHERE {
  ?item wdt:P31 wd:Q6256 .
  ?item wdt:P30 ?continente .

  VALUES ?continente {wd:Q49 wd:Q27611 wd:Q18}

  SERVICE wikibase:label { bd:serviceParam wikibase:language "es, fr" }  
}

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v3("?continente") v1("?item"):::projected c5(["bd:serviceParam"]):::iri c2(["wd:Q6256"]):::iri c7(["es, fr"]):::literal v1 --"wdt:P31"--> c2 v1 --"wdt:P30"--> v3 bind0[/VALUES ?continente/] bind0-->v3 bind00(["wd:Q49"]) bind00 --> bind0 bind01(["wd:Q27611"]) bind01 --> bind0 bind02(["wd:Q18"]) bind02 --> bind0 subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c5 --"wikibase:language"--> c7 end