lotus-sparql-examples

A set of SPARQL examples that are used in LOTUS

View the Project on GitHub lotusnprod/lotus-sparql-examples

wd_chemicals_smiles_isomeric

rq turtle/ttl

Chemicals with isomeric SMILES.

Use at


PREFIX wdt: <http://www.wikidata.org/prop/direct/>
#title: Chemicals with isomeric SMILES
SELECT * WHERE {
    ?structure wdt:P2017 ?smiles.
}

graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
  v2("?smiles"):::projected 
  v1("?structure"):::projected 
  v1 --"wdt:P2017"-->  v2