You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The query parser that is responsible for finding variables in SPARQL queries should ignore SPARQL comments.
The following query contains only a single parameter (x), but the parser will treat y as another variable, even though it appears in a comment.
# Selects ?y that have label "Test" - variables name is different to test ignoring variables in commentsSELECT?xWHERE {
?x<http://www.w3.org/2000/01/rdf-schema#label>"Test" .
}
The text was updated successfully, but these errors were encountered:
The query parser that is responsible for finding variables in SPARQL queries should ignore SPARQL comments.
The following query contains only a single parameter (
x
), but the parser will treaty
as another variable, even though it appears in a comment.The text was updated successfully, but these errors were encountered: