query-a0df593ba1969bb9dff3230df9dc5f37
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
- https://query.wikidata.org/sparql
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
- https://www.wikidata.org/wiki/Talk:Q1744628
- https://www.wikidata.org/wiki/User:PAC2/Ontology
- https://www.wikidata.org/wiki/Wikidata_talk:WikiProject_Ontology/Archive_for_2024
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