sparql-examples

A set of SPARQL examples that are used in different SIB resources

View the Project on GitHub sib-swiss/sparql-examples

1

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