query-6b56f2a0f3f8588ccab8fffa09ec9865

rq turtle/ttl

title: Which are the available non-referenced structure-organism pairs on Wikidata? (limited to 10) SELECT ?statement WHERE { [ p:P235 []; p:P703 ?statement; ] MINUS { ?statement prov:wasDerivedFrom []. } } LIMIT 10 title: Which are the available non-referenced structure-organism pairs on Wikidata? (limited to 10) SELECT ?statement WHERE { [ p:P235 []; p:P703 ?statement; ] MINUS { ?statement prov:wasDerivedFrom []. } } LIMIT 10 title: Which are the available non-referenced structure-organism pairs on Wikidata? (limited to 10) SELECT ?statement WHERE { [ p:P235 []; p:P703 ?statement; ] MINUS { ?statement prov:wasDerivedFrom []. } } LIMIT 10 title: Which are the available non-referenced structure-organism pairs on Wikidata? (limited to 10) SELECT ?statement WHERE { [ p:P235 []; p:P703 ?statement; ] MINUS { ?statement prov:wasDerivedFrom []. } } LIMIT 10 title: Which are the available non-referenced structure-organism pairs on Wikidata? (limited to 10) SELECT ?statement WHERE { [ p:P235 []; p:P703 ?statement; ] MINUS { ?statement prov:wasDerivedFrom []. } } LIMIT 10 title: Which are the available non-referenced structure-organism pairs on Wikidata? (limited to 10) SELECT ?statement WHERE { [ p:P235 []; p:P703 ?statement; ] MINUS { ?statement prov:wasDerivedFrom []. } } LIMIT 10

Use at

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

Query found at

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