sparql-examples

A set of SPARQL examples for tutorials at SWAT4HCLS

View the Project on GitHub dnanad/sparql-examples

1

rq turtle/ttl

Select all hamap rules

Use at

PREFIX sh: <http://www.w3.org/ns/shacl#>

SELECT ?rule
WHERE
{
    ?rule sh:construct ?query  .
}
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
  v2("?query")
  v1("?rule"):::projected 
  v1 --"sh:construct"-->  v2