This section will hold some example searches that can be done to demonstrate some
of the elements of the IoW Graph
PREFIX luc:
PREFIX luc-index:
PREFIX schema:
SELECT ?entity ?score ?name ?desc ?label {
?search a luc-index:combined_one ;
luc:query "basin river lawrence" ;
luc:entities ?entity .
?entity luc:score ?score .
OPTIONAL { ?entity schema:name ?name . }
OPTIONAL { ?entity schema:description ?desc . }
OPTIONAL { ?entity ?label .}
}