lotus-sparql-examples

A set of SPARQL examples that are used in LOTUS

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

wd_maintenance_nps_2

rq turtle/ttl

Non-referenced compound-taxon pairs on Wikidata (limited to 10).

Use at


PREFIX p: <http://www.wikidata.org/prop/>
PREFIX prov: <http://www.w3.org/ns/prov#>
#title: Non-referenced compound-taxon pairs on Wikidata (limited to 10).
SELECT ?statement WHERE {
    [ p:P235 [];
    p:P703 ?statement; ]
    MINUS { ?statement prov:wasDerivedFrom []. }
}
LIMIT 10

graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
  v1("?statement"):::projected 
  a2((" "))
  a3((" "))
  a1((" "))
  a1 --"p:P235"-->  a2
  a1 --"p:P703"-->  v1
  subgraph minus0["MINUS"]
    style minus0 stroke-width:6px,fill:pink,stroke:red;
    v1 --"prov:wasDerivedFrom"-->  a3
  end