query-6b2079ee78f252fb5f1ac661e06ea025
All instances of the class "oil company (Q14941854)", a sub class of Organization
the class structure under "Organization" is chaotic and needs extensive reorganization work.
results are few and major oil companies are missing.
SELECT ?item ?itemDescription ?itemLabel
WHERE { ?item wdt:P31 ?sub0 . ?sub0 (wdt:P279)* wd:Q14941854 .
SERVICE wikibase:label { bd:serviceParam wikibase:language "en,en" }
}
ORDER BY ASC(?item) 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 "oil company (Q14941854)", a sub class of Organization
# the class structure under "Organization" is chaotic and needs extensive reorganization work.
# results are few and major oil companies are missing.
SELECT ?item ?itemDescription ?itemLabel
WHERE {
?item wdt:P31 ?sub0 .
?sub0 (wdt:P279)* wd:Q14941854 .
SERVICE wikibase:label { bd:serviceParam wikibase:language "en,en" }
}
ORDER BY ASC(?item)
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
c3(["wd:Q14941854"]):::iri
c7(["en,en"]):::literal
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