query-9c06a4763066b5a38595cb939a3d77ab
title: Give me a list of all chemical compounds SELECT * WHERE { ?compound wdt:P31 wd:Q11173 }
Use at
- https://query.wikidata.org/sparql
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
#title: Give me a list of all chemical compounds
SELECT * WHERE {
?compound wdt:P31 wd:Q11173
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v1("?compound"):::projected
c2(["wd:Q11173"]):::iri
v1 --"wdt:P31"--> c2