Swirrl / grafter

Linked Data & RDF Manufacturing Tools in Clojure
Eclipse Public License 1.0
188 stars 17 forks source link

spec on sparql/query no longer allows VALUES binding #146

Closed RickMoynihan closed 5 years ago

RickMoynihan commented 5 years ago

e.g. you used to be able to target a sparql query like this:

SELECT * WHERE { 
  VALUES (?s ?p) { (:s-1 rdfs:label)
                               (:s-2 skos:notation) }
  ?s ?p ?o .
}

These queries now raise a spec error.

We should broaden the spec to cover this case.