SPARQL.js icon indicating copy to clipboard operation
SPARQL.js copied to clipboard

Issue parsing query

Open giacomoronconiobda opened this issue 4 years ago • 0 comments

Hello,

I found your project very good and useful. But I have an issue parsing this SPARQL query:

PREFIX rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> 
SELECT ?ed_number0 ?edr_name0 ?ath_name0 ?bk_title0 
WHERE { 
  ?edr0 <http://www.obdasystems.com/books/name> ?edr_name0 . 
  ?ath0 <http://www.obdasystems.com/books/name> ?ath_name0 . 
  ?bk0 <http://www.obdasystems.com/books/writtenBy> ?ath0 ; 
    <http://www.obdasystems.com/books/title> ?bk_title0 ; 
    <http://www.obdasystems.com/books/hasEdition> ?ed0 . 
  ?ed0 <rdf:type> <http://www.obdasystems.com/books/SpecialEdition> ; 
    <http://www.obdasystems.com/books/editionNumber> ?ed_number0 ; 
    <http://www.obdasystems.com/books/editedBy> ?edr0
}

giacomoronconiobda avatar Dec 04 '20 10:12 giacomoronconiobda