sparql-examples

A set of SPARQL examples

View the Project on GitHub Adafede/sparql-examples

wd_chemicals_smiles

rq turtle/ttl

Canonical SMILES

Use at


PREFIX wdt: <http://www.wikidata.org/prop/direct/>
#title: Canonical SMILES
SELECT ?item ?smiles_canonical WHERE {
    ?item wdt:P233 ?smiles_canonical.
}

graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
  v1("?item"):::projected 
  v2("?smiles_canonical"):::projected 
  v1 --"wdt:P233"-->  v2