query-1f8be1885e07f6b7d3ae43102152e504
All instances of the class "Organization (Q43229).
Since "Organization" is a broad class this returns many sub classes and instances, limits to 10,000
see All subclasses of a class to return just the class names (not the instances)
SELECT ?item ?itemDescription ?itemLabel
WHERE { ?item wdt:P31 ?sub0 . ?sub0 (wdt:P279)* wd:Q43229 .
SERVICE wikibase:label { bd:serviceParam wikibase:language "en,en" }
}
ORDER BY ASC(?item) causes a timeout
LIMIT 10000
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#>
# All instances of the class "Organization (Q43229).
# Since "Organization" is a broad class this returns many sub classes and instances, limits to 10,000
# see All subclasses of a class to return just the class names (not the instances)
SELECT ?item ?itemDescription ?itemLabel
WHERE {
?item wdt:P31 ?sub0 .
?sub0 (wdt:P279)* wd:Q43229 .
SERVICE wikibase:label { bd:serviceParam wikibase:language "en,en" }
}
# ORDER BY ASC(?item) causes a timeout
LIMIT 10000
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?item"):::projected
v2("?sub0")
c5(["bd:serviceParam"]):::iri
c7(["en,en"]):::literal
c3(["wd:Q43229"]):::iri
v1 --"wdt:P31"--> v2
v2 --"wdt:P279"--> c3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c5 --"wikibase:language"--> c7
end