query-a0df593ba1969bb9dff3230df9dc5f37

rq turtle/ttl

title: List of instances SELECT ?item ?itemLabel ?itemDescription ?instance ?instanceLabel WHERE { SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". } wd:Q2539 ^(wdt:P279*) ?instance. ?item wdt:P31 ?instance. } LIMIT 1000

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#>
#title: List of instances 
SELECT ?item ?itemLabel ?itemDescription ?instance ?instanceLabel WHERE  {
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
  wd:Q2539 ^(wdt:P279*) ?instance.
  ?item wdt:P31 ?instance. 
}
LIMIT 1000

Query found at

graph TD classDef projected fill:lightgreen; classDef literal fill:orange; classDef iri fill:yellow; v1("?instance"):::projected v2("?item"):::projected c2(["bd:serviceParam"]):::iri c6(["wd:Q2539"]):::iri c4(["#91;AUTO_LANGUAGE#93;,en"]):::literal subgraph s1["http://wikiba.se/ontology#label"] style s1 stroke-width:4px; c2 --"wikibase:language"--> c4 end v1 --"wdt:P279"--> c6 v2 --"wdt:P31"--> v1